Skip to content

Commit

Permalink
refactor(perception): rearrange clustering pipeline parameters (autow…
Browse files Browse the repository at this point in the history
…arefoundation#567)

* fix: use downsample before compare map

Signed-off-by: badai-nguyen <[email protected]>

* fix: remove downsample after compare map

Signed-off-by: badai-nguyen <[email protected]>

* fix: add low range crop filter param

Signed-off-by: badai-nguyen <[email protected]>

* chore: refactor

Signed-off-by: badai-nguyen <[email protected]>

* chore: typo

Signed-off-by: badai-nguyen <[email protected]>

---------

Signed-off-by: badai-nguyen <[email protected]>
  • Loading branch information
badai-nguyen committed Sep 19, 2023
1 parent b389e0e commit 70fe824
Show file tree
Hide file tree
Showing 6 changed files with 8 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 @@ -29,16 +29,11 @@
<arg name="external/traffic_signals" value="/v2x/traffic_signals"/>

<!-- 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 70fe824

Please sign in to comment.