RRT* Planner and Driving Scenario Generator
이전 댓글 표시
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]
답변 (1개)
Anand
2019년 6월 6일
0 개 추천
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.
카테고리
도움말 센터 및 File Exchange에서 Driving Scenario Simulation에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!