RRT* Planner and Driving Scenario Generator
Show older comments
Hi Guys,
I would like to implement RRT* algorithm to my Driving Scenario model :

Do you have any idea, how can I implement standart RRT* algorithm to the driving scenario model ?
I would like to run the simulation; and RRT* algorithm should generate path according to road lane (road lane would be obstacle)(real time).
Please find attached RRT* [1]
Answers (1)
Anand
on 6 Jun 2019
0 votes
The pathPlannerRRT implements a version of the RRT* planner. This may not directly suit your needs, but will get you started.
The basic workflow would entail the following steps:
- Set up a drivingScenario object.
- Add roads, lanes, actors and vehicles to describe your scenario. Add the ego vehicle to the scenario.
- Convert this into a vehicleCostmap object to represent the environment around the vehicle.
- Define the start and goal poses for the planner, then plan a path using pathPlannerRRT.
- Update the position of the ego vehicle based on the path returned by the planner.
Categories
Find more on Scenario Simulation in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!