|
@@ -1,5 +1,4 @@
|
|
-# Description:
|
|
|
|
-# 代价地图通用配置文件,各参数意义如下:
|
|
|
|
|
|
+# Description: 代价地图通用配置文件,各参数意义如下:
|
|
# obstacle_range: 最大障碍物检测范围,超过该范围不认为是障碍物
|
|
# obstacle_range: 最大障碍物检测范围,超过该范围不认为是障碍物
|
|
# raytrace_range: 检测自由空间的最大范围
|
|
# raytrace_range: 检测自由空间的最大范围
|
|
# robot_radius: 机器人本体的半径大小,单位:米,圆形机器人使用.
|
|
# robot_radius: 机器人本体的半径大小,单位:米,圆形机器人使用.
|
|
@@ -10,23 +9,25 @@
|
|
# cost_scaling_factor:用于将inflation计算cost的比例因数,该参数
|
|
# cost_scaling_factor:用于将inflation计算cost的比例因数,该参数
|
|
# 越大,越不把这个inflating看着移动的cost.
|
|
# 越大,越不把这个inflating看着移动的cost.
|
|
# map_type:如果想要3D视图的就用voxel,2D视图的就用costmap参数.
|
|
# map_type:如果想要3D视图的就用voxel,2D视图的就用costmap参数.
|
|
-# observation_sources: 观察源是激光雷达
|
|
|
|
|
|
+# observation_sources:观察源是激光雷达
|
|
# Author: corvin
|
|
# Author: corvin
|
|
# History:
|
|
# History:
|
|
# 20180410:init this file.
|
|
# 20180410:init this file.
|
|
# 20200413:更新参数并更新注释信息.
|
|
# 20200413:更新参数并更新注释信息.
|
|
-#
|
|
|
|
|
|
+# 20220920:更新inflation_layer配置参数.
|
|
|
|
|
|
-#单独圆形机器人的底盘半径参数
|
|
|
|
-robot_radius: 0.10
|
|
|
|
|
|
+#单独圆形机器人的底盘半径参数,不带前面夹爪
|
|
|
|
+#robot_radius: 0.10
|
|
|
|
|
|
#圆形机器人前面带上下移动夹爪的参数
|
|
#圆形机器人前面带上下移动夹爪的参数
|
|
-#footprint: [[ 0.30, 0.00],[ 0.30, 0.055],[ 0.10, 0.055],
|
|
|
|
-# [ 0.09, 0.09],[ 0.00, 0.13],[-0.09, 0.09],
|
|
|
|
-# [-0.13, 0.00],[-0.09, -0.09],[ 0.00, -0.13],
|
|
|
|
-# [ 0.09, -0.09],[ 0.10, -0.055],[ 0.30, -0.055]]
|
|
|
|
|
|
+footprint: [[ 0.30, 0.00],[ 0.30, 0.055],[ 0.10, 0.055],
|
|
|
|
+ [ 0.09, 0.09],[ 0.00, 0.13],[-0.09, 0.09],
|
|
|
|
+ [-0.13, 0.00],[-0.09, -0.09],[ 0.00, -0.13],
|
|
|
|
+ [ 0.09, -0.09],[ 0.10, -0.055],[ 0.30, -0.055]]
|
|
|
|
+
|
|
map_type: costmap
|
|
map_type: costmap
|
|
|
|
|
|
|
|
+#障碍物图层
|
|
obstacle_layer:
|
|
obstacle_layer:
|
|
enabled: true
|
|
enabled: true
|
|
obstacle_range: 1.0
|
|
obstacle_range: 1.0
|
|
@@ -35,7 +36,8 @@ obstacle_layer:
|
|
observation_sources: scan
|
|
observation_sources: scan
|
|
scan: {sensor_frame: lidar, data_type: LaserScan, topic: scan, marking: true, clearing: true}
|
|
scan: {sensor_frame: lidar, data_type: LaserScan, topic: scan, marking: true, clearing: true}
|
|
|
|
|
|
|
|
+#膨胀图层
|
|
inflation_layer:
|
|
inflation_layer:
|
|
enabled: true
|
|
enabled: true
|
|
cost_scaling_factor: 5
|
|
cost_scaling_factor: 5
|
|
- inflation_radius: 0.28
|
|
|
|
|
|
+ inflation_radius: 0.40
|