Is it possible to use an any-time global plannner in move_base

asked 2016-03-16 05:24:11 -0500

Juan Fernández gravatar image

updated 2016-03-16 06:01:27 -0500

gvdhoorn gravatar image

Hi all,

I am wondering if there is some way to implement an any-time path planning algoritm (like ARA*) in move_base. I'm aware of how to implement a plugin for the global planner, for example, A*. But A* is not any-time (that is, A* finds a path and then sends it to the local planner). Any-time algorithms start with an acceptable initial solution and publish it to the local planner. Then, several cycles of refinement of that solution are carried out and, at the end of that cycle a new (improved) solution is published and substitutes the previous one. This allows one to interleave path-planning (global planner) with trajectory execution (local planner) in such a way that, while the local planner is working in its local trajectory, the global planner continues by refining its previous (non optimal) path. Is it possible to have this global-planner/local-planner interleaving with move_base? How?

Many thanks, Juan

edit retag flag offensive close merge delete

Comments

I've been wanting to do something similar. I don't think it's possible without forking move_base and changing its source code (most likely its state machine logic). But I'm not a nav stack expert :P

spmaniato gravatar image spmaniato  ( 2016-03-16 08:52:33 -0500 )edit

This related thread might be of interest : http://answers.ros.org/question/28950...

al-dev gravatar image al-dev  ( 2016-03-18 05:17:13 -0500 )edit