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.
Merge pull request #579 from tier4/sync-awf-upstream
chore: sync tier4/autoware_launch:awf-latest
- Loading branch information
Showing
19 changed files
with
3,335 additions
and
37 deletions.
There are no files selected for viewing
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
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
42 changes: 42 additions & 0 deletions
42
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,42 @@ | ||
/**: | ||
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 | ||
marker_height_from_ground: 1.075 | ||
|
||
# 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] | ||
|
||
# for visualize the detected marker pointcloud | ||
marker_width: 0.8 | ||
|
||
# for save log | ||
enable_save_log: false | ||
save_file_directory_path: detected_reflector_intensity | ||
save_file_name: detected_reflector_intensity | ||
save_frame_id: velodyne_top |
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: "channel" | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
/**: | ||
ros__parameters: | ||
vx_threshold: 0.1 # [m/s] | ||
wz_threshold: 0.02 # [rad/s] |
21 changes: 21 additions & 0 deletions
21
.../object_recognition/detection/detected_object_validation/object_lanelet_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,21 @@ | ||
/**: | ||
ros__parameters: | ||
filter_target_label: | ||
UNKNOWN : true | ||
CAR : false | ||
TRUCK : false | ||
BUS : false | ||
TRAILER : false | ||
MOTORCYCLE : false | ||
BICYCLE : false | ||
PEDESTRIAN : false | ||
|
||
filter_settings: | ||
# polygon overlap based filter | ||
polygon_overlap_filter: | ||
enabled: true | ||
# velocity direction based filter | ||
lanelet_direction_filter: | ||
enabled: false | ||
velocity_yaw_threshold: 0.785398 # [rad] (45 deg) | ||
object_speed_threshold: 3.0 # [m/s] |
16 changes: 16 additions & 0 deletions
16
...object_recognition/detection/detected_object_validation/object_position_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,16 @@ | ||
/**: | ||
ros__parameters: | ||
filter_target_label: | ||
UNKNOWN : true | ||
CAR : false | ||
TRUCK : false | ||
BUS : false | ||
TRAILER : false | ||
MOTORCYCLE : false | ||
BICYCLE : false | ||
PEDESTRIAN : false | ||
|
||
upper_bound_x: 100.0 | ||
lower_bound_x: 0.0 | ||
upper_bound_y: 10.0 | ||
lower_bound_y: -10.0 |
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
4 changes: 4 additions & 0 deletions
4
...ecognition/detection/detected_object_validation/occupancy_grid_based_validator.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,4 @@ | ||
/**: | ||
ros__parameters: | ||
mean_threshold: 0.6 | ||
enable_debug: false |
17 changes: 17 additions & 0 deletions
17
..._launch/config/perception/object_recognition/detection/lidar_model/transfusion.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,17 @@ | ||
/**: | ||
ros__parameters: | ||
# network | ||
trt_precision: fp16 | ||
cloud_capacity: 2000000 | ||
onnx_path: "$(var model_path)/transfusion.onnx" | ||
engine_path: "$(var model_path)/transfusion.engine" | ||
# pre-process params | ||
densification_num_past_frames: 1 | ||
densification_world_frame_id: map | ||
# post-process params | ||
circle_nms_dist_threshold: 0.5 | ||
iou_nms_target_class_names: ["CAR"] | ||
iou_nms_search_distance_2d: 10.0 | ||
iou_nms_threshold: 0.1 | ||
yaw_norm_thresholds: [0.3, 0.3, 0.3, 0.3, 0.0] # refers to the class_names | ||
score_threshold: 0.1 |
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
12 changes: 12 additions & 0 deletions
12
...entation/occupancy_grid_based_outlier_filter/occupancy_grid_map_outlier_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,12 @@ | ||
/**: | ||
ros__parameters: | ||
radius_search_2d_filter.search_radius: 1.0 | ||
radius_search_2d_filter.min_points_and_distance_ratio: 400.0 | ||
radius_search_2d_filter.min_points: 4 | ||
radius_search_2d_filter.max_points: 70 | ||
radius_search_2d_filter.max_filter_points_nb: 15000 | ||
map_frame: "map" | ||
base_link_frame: "base_link" | ||
cost_threshold: 45 | ||
use_radius_search_2d_filter: true | ||
enable_debugger: 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
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
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
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
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
Oops, something went wrong.