ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question
0

How does navigation stack work without a static map?

asked 2019-05-10 02:59:52 -0500

hannesjk gravatar image

Hello!

I have been searching but haven't found out how navigation stack works when no static map is given. My questions are:

  • Can AMCL be run without a static map? If not, how is localization done?
  • How are you able to put in a goal position for the robot without a map?
  • How is the global planning done without knowledge of the environment (the global costmap must be empty)?

If there are any papers about this that I haven't found please link to them.

Thanks!!

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2019-05-10 05:32:16 -0500

alsora gravatar image

updated 2019-05-10 05:39:50 -0500

AMCL is a Localization algorithm, i.e. it requires a map in order to compute the most likely pose of the robot.

If you don't have a map of the environment, you need a SLAM (Simultaneous Localization and Mapping) algorithm to build it. This allows the robot to incrementally build the map as it explores the environment. This exploration can be driven by human controls (i.e. joystick), it can be done moving randomly or it can use exploration algorithms (frontier-based exploration is the simplest).

Theoretically, you can move to a goal position without a map, but this is not path planning as the robot will simply move in a straight line toward the goal, because with no map there are no obstacles. From a practical point of view I think that most system will not allow you to do that.

Here some resources on SLAM with ROS Navigation Stack

http://wiki.ros.org/robotican/Tutoria...

http://wiki.ros.org/navigation#Naviga...

You can look for papers on SLAM, autonomous exploration, frontier-based exploration

edit flag offensive delete link more

Question Tools

2 followers

Stats

Asked: 2019-05-10 02:59:52 -0500

Seen: 1,379 times

Last updated: May 10 '19