obstacle_range: 2.5 raytrace_range: 3.0 #footprint: [[0.175, 0.175], [0.175, -0.175], [-0.175, -0.175], [-0.175, 0.175]] #footprint_inflation: 0.01 robot_radius: 0.175 inflation_radius: 0.1 max_obstacle_height: 0.6 min_obstacle_height: 0.0 observation_sources: scan scan: {data_type: LaserScan, topic: /scan, marking: true, clearing: true, expected_update_rate: 0}
时间: 2024-03-30 18:37:38 浏览: 139
Obstacle.rar_Obstacle Avoidance_Obstacle-avoidance_computing_fuz
这是一个YAML格式的配置文件,其中包含了机器人的一些参数设置,例如障碍物检测范围(obstacle_range)、射线检测范围(raytrace_range)、机器人半径(robot_radius)等等。此外,还包含了机器人传感器的配置信息,比如激光雷达的数据类型(data_type)、话题(topic)、标记(mark)、清除(clearing)、期望的更新率(expected_update_rate)等等。其中,标记和清除用于在地图上标记障碍物和清除障碍物。footprint和footprint_inflation用于描述机器人的轮廓和轮廓膨胀范围。max_obstacle_height和min_obstacle_height用于描述障碍物的最大和最小高度。
阅读全文