-
Notifications
You must be signed in to change notification settings - Fork 284
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(autoware_launch): add euclidean_clustering params (#445)
* add euclidean_clustering param Signed-off-by: ismetatabay <[email protected]> * style(pre-commit): autofix Signed-off-by: ismetatabay <[email protected]> * update and rearrange comments Signed-off-by: ismetatabay <[email protected]> * style(pre-commit): autofix Signed-off-by: ismetatabay <[email protected]> --------- Signed-off-by: ismetatabay <[email protected]> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
- Loading branch information
1 parent
7e19a09
commit 2796d0a
Showing
10 changed files
with
84 additions
and
6 deletions.
There are no files selected for viewing
20 changes: 20 additions & 0 deletions
20
...e_launch/config/perception/object_recognition/detection/clustering/compare_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,20 @@ | ||
/**: | ||
ros__parameters: | ||
|
||
# distance threshold for compare compare | ||
distance_threshold: 0.5 | ||
|
||
# publish voxelized map pointcloud for debug | ||
publish_debug_pcd: False | ||
|
||
# use dynamic map loading | ||
use_dynamic_map_loading: True | ||
|
||
# time interval to check dynamic map loading | ||
timer_interval_ms: 100 | ||
|
||
# distance threshold for dynamic map update | ||
map_update_distance_threshold: 10.0 | ||
|
||
# radius map for dynamic map loading | ||
map_loader_radius: 150.0 |
6 changes: 6 additions & 0 deletions
6
...ch/config/perception/object_recognition/detection/clustering/euclidean_cluster.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,6 @@ | ||
/**: | ||
ros__parameters: | ||
max_cluster_size: 1000 | ||
min_cluster_size: 10 | ||
tolerance: 0.7 | ||
use_height: false |
8 changes: 8 additions & 0 deletions
8
autoware_launch/config/perception/object_recognition/detection/clustering/outlier.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,8 @@ | ||
/**: | ||
ros__parameters: | ||
input_frame: base_link | ||
output_frame: base_link | ||
voxel_size_x: 0.3 | ||
voxel_size_y: 0.3 | ||
voxel_size_z: 100.0 | ||
voxel_points_threshold: 3 |
7 changes: 7 additions & 0 deletions
7
...re_launch/config/perception/object_recognition/detection/clustering/voxel_grid.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,7 @@ | ||
/**: | ||
ros__parameters: | ||
input_frame: base_link | ||
output_frame: base_link | ||
voxel_size_x: 0.15 | ||
voxel_size_y: 0.15 | ||
voxel_size_z: 0.15 |
15 changes: 15 additions & 0 deletions
15
...ion/object_recognition/detection/clustering/voxel_grid_based_euclidean_cluster.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,15 @@ | ||
/**: | ||
ros__parameters: | ||
tolerance: 0.7 | ||
voxel_leaf_size: 0.3 | ||
min_points_number_per_voxel: 1 | ||
min_cluster_size: 10 | ||
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 |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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