- validatorVehicleCostmap: https://www.mathworks.com/help/nav/ref/validatorvehiclecostmap.html
- vehicleCostmap: https://www.mathworks.com/help/driving/ref/vehiclecostmap.html
- inflationCollisionChecker: https://www.mathworks.com/help/driving/ref/driving.costmap.inflationcollisionchecker.html
- Example of inflating obstacles in a "vehicleCostmap": https://www.mathworks.com/help/nav/ref/validatorvehiclecostmap.html#mw_31aec9f0-0eb7-406b-9423-20a6c3184662
- Example of path planning on an inflated "vehicleCostmap": https://www.mathworks.com/help/driving/ref/driving.costmap.inflationcollisionchecker.html#mw_e1a2f093-dde7-444f-aa2f-96ede51ebccc
How can i consider vehicle dimensions in the plannerHybridAStar command?
33 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Volcano
il 21 Nov 2024 alle 10:48
Commentato: Volcano
il 22 Nov 2024 alle 10:23
Hi everyone,
I benefit from plannerHybridAStar command for my simulated vehicle to obtain the shortest path. In this link, a useful function can be used to find the shortest path, however vehicle dimensions are ignored.
Is there any way to perform same task considering vehicle dimensions?
Thanks,
0 Commenti
Risposta accettata
Aravind
il 22 Nov 2024 alle 9:34
It sounds like you want to incorporate the vehicle's size into the Hybrid A* Planner. Typically, this is done by inflating the size of the obstacles by an amount greater than the vehicle's size. This ensures that even if the algorithm treats the vehicle as a point, the path generated will avoid collisions since the obstacles are effectively larger to account for the vehicle's dimensions.
To achieve obstacle inflation for the Hybrid A* Planner in MATLAB, you should replace the "binaryOccupancyMap" with a "vehicleCostmap" object. The "vehicleCostmap" object allows you to use an "inflationCollisionChecker" object to inflate the obstacles on the map, thus accounting for the vehicle's size. You can specify the desired inflation radius using the "InflationRadius" property of the "inflationCollisionChecker" object.
Keep in mind that when using the "vehicleCostmap" object with the "plannerHybridAStar" function, you should use "validatorVehicleCostmap" instead of "validatorOccupancyMap" as the function's argument.
Here are some documentation links for more information on these functions:
I hope this helps resolve your query!
Più risposte (0)
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!