Skip to content

Commit

Permalink
Merge pull request autowarefoundation#431 from tier4/feat/rearrange-c…
Browse files Browse the repository at this point in the history
…lustering-v2.3.0

refactor(perception): rearrange clustering pipeline parameters (autowarefoundation#567)
  • Loading branch information
badai-nguyen authored Sep 22, 2023
2 parents c44c5e5 + d4650fe commit ac2dc69
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 48 deletions.

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,11 @@
max_cluster_size: 3000
use_height: false
input_frame: "base_link"
max_x: 70.0
min_x: -70.0
max_y: 70.0
min_y: -70.0
max_z: 4.5
min_z: -4.5

# low height crop box filter param
max_x: 200.0
min_x: -200.0
max_y: 200.0
min_y: -200.0
max_z: 2.0
min_z: -10.0
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
/**:
ros__parameters:
# use downsample filter before compare map
use_down_sample_filter: False

# voxel size for downsample filter
down_sample_voxel_size: 0.1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,18 +27,15 @@
<arg name="remove_unknown" value="false"/>
<arg name="trust_distance" value="100.0"/>
<arg name="external/traffic_signals" value="/v2x/traffic_signals"/>
<arg name="use_low_height_cropbox" value="true"/>
<arg name="use_roi_based_cluster" value="false"/>

<!-- object recognition -->
<arg name="object_recognition_detection_compare_map_param_path" value="$(find-pkg-share autoware_launch)/config/perception/object_recognition/detection/clustering/compare_map.param.yaml"/>
<arg
name="object_recognition_detection_euclidean_cluster_param_path"
value="$(find-pkg-share autoware_launch)/config/perception/object_recognition/detection/clustering/euclidean_cluster.param.yaml"
/>
<arg name="object_recognition_detection_outlier_param_path" value="$(find-pkg-share autoware_launch)/config/perception/object_recognition/detection/clustering/outlier.param.yaml"/>
<arg
name="object_recognition_detection_voxel_grid_based_euclidean_param_path"
value="$(find-pkg-share autoware_launch)/config/perception/object_recognition/detection/clustering/voxel_grid.param.yaml"
/>
<arg
name="object_recognition_detection_voxel_grid_based_euclidean_cluster_param_path"
value="$(find-pkg-share autoware_launch)/config/perception/object_recognition/detection/clustering/voxel_grid_based_euclidean_cluster.param.yaml"
Expand Down

0 comments on commit ac2dc69

Please sign in to comment.