-
Notifications
You must be signed in to change notification settings - Fork 287
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Yamato Ando <[email protected]>
- Loading branch information
1 parent
4e94d65
commit e0546b4
Showing
4 changed files
with
57 additions
and
0 deletions.
There are no files selected for viewing
32 changes: 32 additions & 0 deletions
32
autoware_launch/config/localization/lidar_marker_localizer/lidar_marker_localizer.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,32 @@ | ||
/**: | ||
ros__parameters: | ||
|
||
# marker name | ||
marker_name: "reflector" | ||
|
||
# for marker detection algorithm | ||
resolution: 0.05 | ||
# A sequence of high/low intensity to perform pattern matching. | ||
# 1: high intensity (positive match), 0: not consider, -1: low intensity (negative match) | ||
intensity_pattern: [-1, -1, 0, 1, 1, 1, 1, 1, 0, -1, -1] | ||
match_intensity_difference_threshold: 20 | ||
positive_match_num_threshold: 3 | ||
negative_match_num_threshold: 3 | ||
vote_threshold_for_detect_marker: 20 | ||
|
||
# for interpolate algorithm | ||
self_pose_timeout_sec: 1.0 | ||
self_pose_distance_tolerance_m: 1.0 | ||
|
||
# for validation | ||
limit_distance_from_self_pose_to_nearest_marker: 2.0 | ||
limit_distance_from_self_pose_to_marker: 2.0 | ||
|
||
# base_covariance | ||
# [TBD] This value is dynamically scaled according to the distance at which markers are detected. | ||
base_covariance: [0.04, 0.0, 0.0, 0.0, 0.0, 0.0, | ||
0.0, 0.04, 0.0, 0.0, 0.0, 0.0, | ||
0.0, 0.0, 0.01, 0.0, 0.0, 0.0, | ||
0.0, 0.0, 0.0, 0.00007569, 0.0, 0.0, | ||
0.0, 0.0, 0.0, 0.0, 0.00007569, 0.0, | ||
0.0, 0.0, 0.0, 0.0, 0.0, 0.00030625] |
11 changes: 11 additions & 0 deletions
11
...dar_marker_localizer/pointcloud_preprocessor/crop_box_filter_measurement_range.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,11 @@ | ||
/**: | ||
ros__parameters: | ||
input_frame: "base_link" | ||
output_frame: "base_link" | ||
min_x: -10.0 | ||
max_x: 10.0 | ||
min_y: 0.0 | ||
max_y: 7.5 | ||
min_z: -5.0 | ||
max_z: 5.0 | ||
negative: False |
9 changes: 9 additions & 0 deletions
9
...config/localization/lidar_marker_localizer/pointcloud_preprocessor/ring_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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
/**: | ||
ros__parameters: | ||
input_frame: "base_link" | ||
output_frame: "base_link" | ||
filter_field_name: "ring" | ||
filter_limit_min: 5 | ||
filter_limit_max: 45 | ||
filter_limit_negative: False | ||
keep_organized: False |
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