Simulate RRT* (Rapidly-exploring Random Tree STAR) 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 RRTS.py
python RRTS.py -m easy
- Hard Mode:
python RRTS.py -m hard
Code for the lower version (RRT) is here