37#ifndef EASYNAV_COSTMAP_COMMON__COST_VALUES_HPP_
38#define EASYNAV_COSTMAP_COMMON__COST_VALUES_HPP_
70static constexpr unsigned char NO_INFORMATION = 255;
71static constexpr unsigned char LETHAL_OBSTACLE = 254;
72static constexpr unsigned char INSCRIBED_INFLATED_OBSTACLE = 253;
73static constexpr unsigned char MAX_NON_OBSTACLE = 252;
74static constexpr unsigned char FREE_SPACE = 0;
Provides a mapping for often used cost values.
Definition cost_values.hpp:41
CombinationMethod
Definition cost_values.hpp:48
@ Max
Sets the new value to the maximum of the master_grid's value and this layer's value.
Definition cost_values.hpp:60
@ Overwrite
Overwrite means every valid value from this layer is written into the master grid (does not copy NO_I...
Definition cost_values.hpp:53
@ MaxWithoutUnknownOverwrite
Sets the new value to the maximum of the master_grid's value and this layer's value.
Definition cost_values.hpp:67