|
| 1 | +# sample grid map fusion parameters for sample sensor kit |
| 2 | +/**: |
| 3 | + ros__parameters: |
| 4 | + # shared parameters |
| 5 | + shared_config: |
| 6 | + map_frame: "map" |
| 7 | + base_link_frame: "base_link" |
| 8 | + # center of the grid map |
| 9 | + gridmap_origin_frame: "base_link" |
| 10 | + |
| 11 | + map_resolution: 0.5 # [m] |
| 12 | + map_length_x: 150.0 # [m] |
| 13 | + map_length_y: 150.0 # [m] |
| 14 | + |
| 15 | + # each grid map parameters |
| 16 | + ogm_creation_config: |
| 17 | + height_filter: |
| 18 | + use_height_filter: true |
| 19 | + min_height: -1.0 |
| 20 | + max_height: 2.0 |
| 21 | + enable_single_frame_mode: true |
| 22 | + # use sensor pointcloud to filter obstacle pointcloud |
| 23 | + filter_obstacle_pointcloud_by_raw_pointcloud: true |
| 24 | + |
| 25 | + grid_map_type: "OccupancyGridMapFixedBlindSpot" |
| 26 | + OccupancyGridMapFixedBlindSpot: |
| 27 | + distance_margin: 1.0 |
| 28 | + OccupancyGridMapProjectiveBlindSpot: |
| 29 | + projection_dz_threshold: 0.01 # [m] for avoiding null division |
| 30 | + obstacle_separation_threshold: 1.0 # [m] fill the interval between obstacles with unknown for this length |
| 31 | + pub_debug_grid: false |
| 32 | + |
| 33 | + # parameter settings for ogm fusion |
| 34 | + fusion_config: |
| 35 | + # following parameters are shared: map_frame, base_link_frame, gridmap_origin_frame, map_resolution, map_length |
| 36 | + # Setting1: tune ogm creation parameters |
| 37 | + raw_pointcloud_topics: # put each sensor's pointcloud topic |
| 38 | + - "/sensing/lidar/top/pointcloud" |
| 39 | + - "/sensing/lidar/left/pointcloud" |
| 40 | + - "/sensing/lidar/right/pointcloud" |
| 41 | + fusion_input_ogm_topics: |
| 42 | + - "/perception/occupancy_grid_map/top_lidar/map" |
| 43 | + - "/perception/occupancy_grid_map/left_lidar/map" |
| 44 | + - "/perception/occupancy_grid_map/right_lidar/map" |
| 45 | + # reliability of each sensor (0.0 ~ 1.0) only work with "log-odds" and "dempster-shafer" |
| 46 | + input_ogm_reliabilities: |
| 47 | + - 1.0 |
| 48 | + - 0.6 |
| 49 | + - 0.6 |
| 50 | + |
| 51 | + # Setting2: tune ogm fusion parameters |
| 52 | + ## choose fusion method from ["overwrite", "log-odds", "dempster-shafer"] |
| 53 | + fusion_method: "overwrite" |
0 commit comments