Jump to content

Layered costmaps

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by Taiki Shuttle (talk | contribs) at 23:10, 10 July 2024. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

This sandbox is in the article namespace. Either move this page into your userspace, or remove the {{User sandbox}} template.

A schematic of Layered costmaps

The layered costmaps is a method to create and update maps for robot navigation and path planning proposed by David V. Lu in 2014.[1] The method consists of more than one layer of costmaps, each of which describes obstacles with different properties. Each layered costmap consists of grids and is represented as a matrix, the values of the matrix elements are related to the risks of grids. In the layered costmap, the colour of a grid indicates the risk of moving through that grid. There is a high probability of robot collision when the robot moves through a grid with deep colour. When updating a layered costmap, only the area covered by the sensors (such as Lidar) in the map is updated, rather than the entire map.

Layered costmap categories

Layered costmaps is a flexible method, and spcial categories of layered costmaps can be designed and added to the method depending on the navigation environment of the mobile robot. In Robot Operating System (ROS), some categories of layered costmaps are provided for mobile robot navigation[2], and they are also the typical categories of layered costmaps that are added in most cases.

Static Map Layer

The static map layer is at the bottom among all layered costmaps, and it includes the situation of all known static obstacles in the environment before navigation starts. The static map layer can be generated with a SLAM algorithm or can be created from an architectural diagram.

If in the static map matrix , the real location corresponds to the element index , then an example of the static map layer defining rules is as follows:

Obstacles Map Layer

The obstacles map layer describes the situation of obstacles detected by sensors during robot navigation. Since the observation distance of the sensor is limited, the obstacles map layer can only be updated in the observation area of the sensor.

Assume that there is only one sensor in the scene and it is equipped on the robot, its observation area is a square with side length , and the location of the robot is . If in the obstacles map matrix , the real location corresponds to the element index , then an example of the obstacles map layer defining rules is as follows:

where meets that and .

Inflation Layer

The inflation layer inserts a buffer zone around each obstacle in order to keep the robot from getting too close to obstacles. Note that these obstacles include obstacles described in the static map layer and the obstacles map layer.

File:Inflation of ROS costmap.png
A schematic of a inflation rule.
  1. ^ Lu, David V.; Hershberger, Dave; Smart, William D. (September 2014). "Layered costmaps for context-sensitive navigation": 709–715. doi:10.1109/IROS.2014.6942636. {{cite journal}}: Cite journal requires |journal= (help)
  2. ^ "costmap_2d/layered - ROS Wiki". wiki.ros.org.