RRT
Table of contents
Rapidly-exploring Random Trees (RRT) are sampling-based motion planning methods that incrementally grow a tree in configuration space.
Core idea
RRT expands from a start state by repeatedly:
- Sampling a random state.
- Finding the nearest node already in the tree.
- Extending toward the sample with a bounded step.
- Accepting the new node if it is collision-free.
Why use RRT
- Works well in high-dimensional spaces.
- Handles complex obstacle geometries.
- Produces feasible paths quickly.
Common variants
- RRT-Connect
- RRT*
- Informed RRT*