forked from autowarefoundation/autoware_launch
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(probabilistic_occupancy_grid_map): add occupancy downsample filt…
…er (autowarefoundation#648) feat(probabilistic_occupancy_grid_map): add downsample filter option to ogm creation (autowarefoundation#962) * feat(probabilistic_occupancy_grid_map): add downsample filter option to ogm creation * chore: do not use pointcloud filter when downsample is true * Update autoware_launch/config/perception/occupancy_grid_map/multi_lidar_pointcloud_based_occupancy_grid_map.param.yaml --------- Signed-off-by: yoshiri <[email protected]> Co-authored-by: Yukihiro Saito <[email protected]>
- Loading branch information
1 parent
4b58b2f
commit 208dfd0
Showing
2 changed files
with
61 additions
and
0 deletions.
There are no files selected for viewing
57 changes: 57 additions & 0 deletions
57
.../perception/occupancy_grid_map/multi_lidar_pointcloud_based_occupancy_grid_map.param.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
# sample grid map fusion parameters for sample sensor kit | ||
/**: | ||
ros__parameters: | ||
# shared parameters | ||
shared_config: | ||
map_frame: "map" | ||
base_link_frame: "base_link" | ||
# center of the grid map | ||
gridmap_origin_frame: "base_link" | ||
|
||
map_resolution: 0.5 # [m] | ||
map_length_x: 150.0 # [m] | ||
map_length_y: 150.0 # [m] | ||
|
||
# downsample input pointcloud | ||
downsample_input_pointcloud: true | ||
downsample_voxel_size: 0.25 # [m] | ||
|
||
# each grid map parameters | ||
ogm_creation_config: | ||
height_filter: | ||
use_height_filter: true | ||
min_height: -1.0 | ||
max_height: 2.0 | ||
enable_single_frame_mode: true | ||
# use sensor pointcloud to filter obstacle pointcloud | ||
filter_obstacle_pointcloud_by_raw_pointcloud: false | ||
|
||
grid_map_type: "OccupancyGridMapFixedBlindSpot" | ||
OccupancyGridMapFixedBlindSpot: | ||
distance_margin: 1.0 | ||
OccupancyGridMapProjectiveBlindSpot: | ||
projection_dz_threshold: 0.01 # [m] for avoiding null division | ||
obstacle_separation_threshold: 1.0 # [m] fill the interval between obstacles with unknown for this length | ||
pub_debug_grid: false | ||
|
||
# parameter settings for ogm fusion | ||
fusion_config: | ||
# following parameters are shared: map_frame, base_link_frame, gridmap_origin_frame, map_resolution, map_length | ||
# Setting1: tune ogm creation parameters | ||
raw_pointcloud_topics: # put each sensor's pointcloud topic | ||
- "/sensing/lidar/top/pointcloud" | ||
- "/sensing/lidar/left/pointcloud" | ||
- "/sensing/lidar/right/pointcloud" | ||
fusion_input_ogm_topics: | ||
- "/perception/occupancy_grid_map/top_lidar/map" | ||
- "/perception/occupancy_grid_map/left_lidar/map" | ||
- "/perception/occupancy_grid_map/right_lidar/map" | ||
# reliability of each sensor (0.0 ~ 1.0) only work with "log-odds" and "dempster-shafer" | ||
input_ogm_reliabilities: | ||
- 1.0 | ||
- 0.6 | ||
- 0.6 | ||
|
||
# Setting2: tune ogm fusion parameters | ||
## choose fusion method from ["overwrite", "log-odds", "dempster-shafer"] | ||
fusion_method: "overwrite" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters