is loadDefaultProcessPlanners
needed?
#120
-
In the puzzle_piece_auxillary_axes_example, Is it need to use the |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
In this case, since the only process planner being used is the one added in the example it is not necessary to call
It stores them in a map so if you add a planner with the same name as one that is already stored it will be replaced.
Currently, the process planners do not interact, but the low-level planners like Descartes, TrajOpt, and OMPL do. It is possible to set up parameter for the individual planners which are not compatible. For example, if you use the raster planner where the raster (Cartesian Planner) has a contact distance threshold of 1cm but for the transitions (Freespace Planner) you set a contact threshold of 2cm this could cause it to fail because the start and end of the transition may violation the 2cm distance because they were planned with the 1cm distance threshold. |
Beta Was this translation helpful? Give feedback.
-
Thank you, I have another question to make sure I'm understanding how it works |
Beta Was this translation helpful? Give feedback.
In this case, since the only process planner being used is the one added in the example it is not necessary to call
loadDefaultProcessPlannners
.It stores them in a map so if you add a planner with the same name as one that is already stored it will be replaced.
Currently, the process planners do not interact, but the low-level planners like Descartes, TrajOpt, and OMPL do. It i…