Skip to content

danielstrizhevsky/motion-planning

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Motion Planning algorithms

Implementations and interactive visualizations of motion planning algorithms. Currently, the following algorithms are implemented:

  • RRT
    • Rapidly Exploring Random Tree.
  • RRT*
    • Probabilistically Optimal RRT that rewires the tree to try to improve upon existing paths.
  • Anytime RRT*
    • An implementation of RRT* that allows for planning while the agent moves. Once a path to the goal is found, the agent begins following a set trajectory, but the tree continues growing from the end of this trajectory. This allows for continuous improvement of the path to the goal while the agent is moving.

See them in action below!


Anytime RRT*


RRT*


RRT


Requirements

  • matplotlib

Usage

In the top-level directory, run

export PYTHONPATH="."

Then, run any of the following:

python motion_planning/rrt/rrt.py
python motion_planning/rrt/rrt_star.py
python motion_planning/rrt/anytime_rrt_star.py

If running the anytime RRT* algorithm, you can click anywhere on the visualization to move the goal there! For now, ctrl+c to exit.

You can also add/remove/edit obstacles, change the start or goal position, and update any parameters in config/rrt_config.py.


Resources