Is there a way to create a Dubins path given a set of waypoints?

3 ビュー (過去 30 日間)
Shubham Kalpande
Shubham Kalpande 2021 年 6 月 12 日
コメント済み: burak ergocmen 2025 年 1 月 23 日
I want my UAV model to fly through a set of waypoints, is there any way I can decompose the path into dubins connections i.e straight line segments and circular arcs?

回答 (2 件)

Yiping Liu
Yiping Liu 2021 年 6 月 13 日
編集済み: Walter Roberson 2021 年 6 月 13 日
Please check the example in the doc page below
  2 件のコメント
Shubham Kalpande
Shubham Kalpande 2021 年 6 月 13 日
Yeah, but this requires start pose and goal pose. I want to connect a set of waypoints. How can I do that?
burak ergocmen
burak ergocmen 2025 年 1 月 23 日
with "interpolate" and "poses" in this page: https://www.mathworks.com/help/uav/ref/uavdubinspathsegment.interpolate.html

サインインしてコメントする。


Jianxin Sun
Jianxin Sun 2021 年 6 月 14 日
The connect method of uavDubinsConnection can accept pairs of start and goal poses. Assume your waypoints are defined as a Nx4 matrix. Each row is one waypoint in [x, y, z, course angle] format. The following two lines should provide N-1 dubin's path connecting all your waypoints.
connector = uavDubinsConnection;
connector.connect(waypoints(1:end-1, :), waypoints(2:end, :))

製品


リリース

R2020b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by