Skip to content

Commit 06b271e

Browse files
YoshiRiyukkysaito
andauthored
feat(probabilistic_occupancy_grid_map): add downsample filter option to ogm creation (#962)
* feat(probabilistic_occupancy_grid_map): add downsample filter option to ogm creation Signed-off-by: yoshiri <yoshiyoshidetteiu@gmail.com> * chore: do not use pointcloud filter when downsample is true Signed-off-by: yoshiri <yoshiyoshidetteiu@gmail.com> * Update autoware_launch/config/perception/occupancy_grid_map/multi_lidar_pointcloud_based_occupancy_grid_map.param.yaml Co-authored-by: Yukihiro Saito <yukky.saito@gmail.com> --------- Signed-off-by: yoshiri <yoshiyoshidetteiu@gmail.com> Co-authored-by: Yukihiro Saito <yukky.saito@gmail.com>
1 parent d957c83 commit 06b271e

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

autoware_launch/config/perception/occupancy_grid_map/multi_lidar_pointcloud_based_occupancy_grid_map.param.yaml

+5-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@
1212
map_length_x: 150.0 # [m]
1313
map_length_y: 150.0 # [m]
1414

15+
# downsample input pointcloud
16+
downsample_input_pointcloud: true
17+
downsample_voxel_size: 0.25 # [m]
18+
1519
# each grid map parameters
1620
ogm_creation_config:
1721
height_filter:
@@ -20,7 +24,7 @@
2024
max_height: 2.0
2125
enable_single_frame_mode: true
2226
# use sensor pointcloud to filter obstacle pointcloud
23-
filter_obstacle_pointcloud_by_raw_pointcloud: true
27+
filter_obstacle_pointcloud_by_raw_pointcloud: false
2428

2529
grid_map_type: "OccupancyGridMapFixedBlindSpot"
2630
OccupancyGridMapFixedBlindSpot:

autoware_launch/config/perception/occupancy_grid_map/pointcloud_based_occupancy_grid_map.param.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@
88
min_height: -1.0
99
max_height: 2.0
1010

11+
# downsample input pointcloud
12+
downsample_input_pointcloud: true
13+
downsample_voxel_size: 0.125 # [m]
14+
1115
enable_single_frame_mode: false
1216
# use sensor pointcloud to filter obstacle pointcloud
1317
filter_obstacle_pointcloud_by_raw_pointcloud: false

0 commit comments

Comments
 (0)