forked from autowarefoundation/autoware_launch
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: compare map filter param (#291)
Signed-off-by: badai-nguyen <[email protected]>
- Loading branch information
1 parent
fc12862
commit a26a821
Showing
1 changed file
with
17 additions
and
1 deletion.
There are no files selected for viewing
18 changes: 17 additions & 1 deletion
18
...re_launch/config/perception/object_recognition/detection/pointcloud_map_filter.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 |
---|---|---|
@@ -1,9 +1,25 @@ | ||
/**: | ||
ros__parameters: | ||
# use downsample filter before compare map | ||
use_down_sample_filter: False | ||
use_dynamic_map_loading: True | ||
|
||
# voxel size for downsample filter | ||
down_sample_voxel_size: 0.1 | ||
|
||
# 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 |