Home

Awesome

Dubins-RRT-for-MATLAB

About

RRT (Rapidly-Exploring Random Trees) using Dubins curve, with collision check in MATLAB
4000 Dubins RRT iteration with collision

Intro

RRT, the Rapidly-Exploring Random Trees is a ramdomized method of exploring within dimensions. This method can effectively generate a path to reach any point within certain limited steps due to its random characteristics. This method is proprosed by LaValle, Steven M. in October 1998, in his technical report to Computer Science Department of Iowa State University as "Rapidly-exploring random trees: A new tool for path planning" Today, multiple variation of RRT method is widely applied with path planning problem among UAVs for ground based, aerial, and marinetime vehicles.
In RRT_Dubins.m, the paths connecting each points, or the "edges" to the "vertices" are replaced with Dubins curve. This is a very common practice when dealing with dynamic system. Specifically for non-holonomic system, such as cars, airplanes or ships. Replacements of Dubins curve means the branches growing out of a vertex is always smooth in the sense tengency. This makes the path generated more feassibly then the original straight line connection style if taking dynamics into consideration.

Algorithm

For the sake of simplicity, I will discuss the algorithm only with 2-D planes. The problem is, given a starting point and limited boundary, how do we reach everypoint within the area systematically? The method itself is very simple, only repeative iteration of are 4 steps.

  1. Generate a random point, i.e, a "vertex"
  2. Find the closest vertex from the existing list (euclidean distance or dubins path distance).
  3. Create an "edge" connect the new vertex to the closest existing vertex.
  4. Check if the newly generated vertex and edge has collision with obstacles or not. Go back to step1 if conflict.
  5. Append (add) the new vertex and edge to the known vertices and edges list.
  6. Start from step1 As the iteration goes, it looks like a tree consists of edges is growing within the boundary and thus named so.

Running the programs

There are 4 main programs, see the comments in each file for more detail

Note: All plotting related function have the filename starts with plot_xxxxx_xxxx.m.

Execution Time

<img src="https://github.com/EwingKang/Dubins-RRT-for-MATLAB/raw/master/test_results/one-hundrede-iterations.png" alt="100 iterations" width="280"><img src="https://github.com/EwingKang/Dubins-RRT-for-MATLAB/raw/master/test_results/one-thousand-iterations.png" alt="1000 iterations" width="275"><img src="https://github.com/EwingKang/Dubins-RRT-for-MATLAB/raw/master/test_results/ten-thousand-iterations.png" alt="10000 iterations" width="285">

References

License

Released under GPLv3 license
Copyright (c) 2018 Ewing Kang

Dubins path generator is a MATLAB re-written from Andrew Walker's work, which was originally distributed under MIT license in C language.

See LICENSE file for more info.

TODOS