Simulate RRT (Rapidly-exploring Random Tree) algorithm with Python in 2 scenarios:
- Easy: no lane, only obstacles
- Hard: complex lanes and obstacles
- Python 3.7
- Ubuntu 20.04
Install necessary packages followed requirements.txt
pip install -r requirements.txt
- start node
- target node
- obstacle size
- number of obstacles
- etc.,
- Easy Mode (default):
or
python RRT.pypython RRT.py -m easy - Hard Mode:
python RRT.py -m hard
Code for the RRT* is here

