Does vehicleCostmap this type of map only support pathPlannerRRT object to plan a path? Can I use another algorithm to plan a path?
2 ビュー (過去 30 日間)
古いコメントを表示
I really dont know how to use A* algorithm in vehicleCostmap this type of map to finish the path planning.
there's plannerAStarGrid method in Navigation toolbox, unfortunately, which are not allow to use in vehicleCostmap.
so, the question is that vehicleCostmap this type of map only support pathPlannerRRT object to plan a path? Can I use another algorithm to plan a path in vehicleCostmap?
huge thx!
0 件のコメント
回答 (2 件)
Qu Cao
2021 年 5 月 21 日
You can create an occupancyMap object from a vehicleCostmap object using the following syntax:
and then pass it to plannerAStarGrid.
0 件のコメント
Ankur Srivastava
2021 年 5 月 24 日
Currently, plannerAStarGrid only supports binaryOccupancyMap and occupancyMap.
Alternatively, you can convert your vehicleCostmap object to occupancyMap using the following syntax:
p = vehicleCostmapObj.Costmap;
resolution = 1/vehicleCostmapObj.CellSize;
map = occupancyMap(p,resolution);
map.FreeThreshold = p.FreeThreshold;
map.OccupiedThreshold = p.OccupiedThreshold;
and then pass it to plannerAStarGrid.
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!