Filter löschen
Filter löschen

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

12 Ansichten (letzte 30 Tage)
Shubham Kalpande
Shubham Kalpande am 12 Jun. 2021
Beantwortet: Jianxin Sun am 14 Jun. 2021
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?

Antworten (2)

Yiping Liu
Yiping Liu am 13 Jun. 2021
Bearbeitet: Walter Roberson am 13 Jun. 2021
Please check the example in the doc page below
  1 Kommentar
Shubham Kalpande
Shubham Kalpande am 13 Jun. 2021
Yeah, but this requires start pose and goal pose. I want to connect a set of waypoints. How can I do that?

Melden Sie sich an, um zu kommentieren.


Jianxin Sun
Jianxin Sun am 14 Jun. 2021
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, :))

Kategorien

Mehr zu UAV finden Sie in Help Center und File Exchange

Produkte


Version

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by