Skip to content

Commit 01249a7

Browse files
authored
Merge branch 'main' into chore/object_velocity_splitter/add_config
2 parents 1105fd1 + 7837d1f commit 01249a7

File tree

15 files changed

+39
-19
lines changed

15 files changed

+39
-19
lines changed

autoware_launch/config/localization/ndt_scan_matcher.param.yaml

+5-6
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,9 @@
5454
# Tolerance of distance difference between two initial poses used for linear interpolation. [m]
5555
initial_pose_distance_tolerance_m: 10.0
5656

57+
# The execution time which means probably NDT cannot matches scans properly. [ms]
58+
critical_upper_bound_exe_time_ms: 100.0
59+
5760
# Number of threads used for parallel computing
5861
num_threads: 4
5962

@@ -92,12 +95,8 @@
9295
# Radius of input LiDAR range (used for diagnostics of dynamic map loading)
9396
lidar_radius: 100.0
9497

95-
# cspell: ignore degrounded
96-
# A flag for using scan matching score based on de-grounded LiDAR scan
97-
estimate_scores_for_degrounded_scan: false
98+
# A flag for using scan matching score based on no ground LiDAR scan
99+
estimate_scores_by_no_ground_points: false
98100

99101
# If lidar_point.z - base_link.z <= this threshold , the point will be removed
100102
z_margin_for_ground_removal: 0.8
101-
102-
# The execution time which means probably NDT cannot matches scans properly. [ms]
103-
critical_upper_bound_exe_time_ms: 100
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/**:
2+
ros__parameters:
3+
split_range: 80.0
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/**:
2+
ros__parameters:
3+
split_range: 70.0

autoware_launch/config/perception/object_recognition/tracking/tracking_object_merger/data_association_matrix.param.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
lidar-lidar:
44
can_assign_matrix:
55
#UNKNOWN, CAR, TRUCK, BUS, TRAILER, MOTORBIKE, BICYCLE,PEDESTRIAN
6-
[0, 0, 0, 0, 0, 0, 0, 0, #UNKNOWN
6+
[1, 0, 0, 0, 0, 0, 0, 0, #UNKNOWN
77
0, 1, 1, 1, 1, 0, 0, 0, #CAR
88
0, 1, 1, 1, 1, 0, 0, 0, #TRUCK
99
0, 1, 1, 1, 1, 0, 0, 0, #BUS
@@ -59,7 +59,7 @@
5959
lidar-radar:
6060
can_assign_matrix:
6161
#UNKNOWN, CAR, TRUCK, BUS, TRAILER, MOTORBIKE, BICYCLE,PEDESTRIAN
62-
[0, 0, 0, 0, 0, 0, 0, 0, #UNKNOWN
62+
[1, 0, 0, 0, 0, 0, 0, 0, #UNKNOWN
6363
0, 1, 1, 1, 1, 0, 0, 0, #CAR
6464
0, 1, 1, 1, 1, 0, 0, 0, #TRUCK
6565
0, 1, 1, 1, 1, 0, 0, 0, #BUS
@@ -115,7 +115,7 @@
115115
radar-radar:
116116
can_assign_matrix:
117117
#UNKNOWN, CAR, TRUCK, BUS, TRAILER, MOTORBIKE, BICYCLE,PEDESTRIAN
118-
[0, 0, 0, 0, 0, 0, 0, 0, #UNKNOWN
118+
[1, 0, 0, 0, 0, 0, 0, 0, #UNKNOWN
119119
0, 1, 1, 1, 1, 0, 0, 0, #CAR
120120
0, 1, 1, 1, 1, 0, 0, 0, #TRUCK
121121
0, 1, 1, 1, 1, 0, 0, 0, #BUS

autoware_launch/config/perception/object_recognition/tracking/tracking_object_merger/decorative_tracker_merger.param.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@
2323

2424
# logging
2525
enable_logging: false
26-
log_file_path: "/tmp/decorative_tracker_merger.log"
26+
logging_file_path: "/tmp/decorative_tracker_merger.log"

autoware_launch/config/planning/scenario_planning/lane_driving/behavior_planning/behavior_path_planner/avoidance/avoidance.param.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
use_opposite_lane: true
2020
use_intersection_areas: true
2121
use_hatched_road_markings: true
22+
use_freespace_areas: true
2223

2324
# for debug
2425
publish_debug_marker: false
@@ -218,7 +219,7 @@
218219
return_dead_line:
219220
goal:
220221
enable: true # [-]
221-
buffer: 30.0 # [m]
222+
buffer: 3.0 # [m]
222223
traffic_light:
223224
enable: true # [-]
224225
buffer: 3.0 # [m]

autoware_launch/config/planning/scenario_planning/lane_driving/behavior_planning/behavior_path_planner/start_planner/start_planner.param.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,15 @@
66
th_stopped_velocity: 0.01
77
th_stopped_time: 1.0
88
collision_check_margins: [2.0, 1.0, 0.5, 0.1]
9-
collision_check_distance_from_end: 1.0
9+
collision_check_distance_from_end: -10.0
1010
collision_check_margin_from_front_object: 5.0
1111
th_moving_object_velocity: 1.0
1212
th_distance_to_middle_of_the_road: 0.5
1313
center_line_path_interval: 1.0
1414
# shift pull out
1515
enable_shift_pull_out: true
1616
check_shift_path_lane_departure: true
17+
shift_collision_check_distance_from_end: -10.0
1718
minimum_shift_pull_out_distance: 0.0
1819
deceleration_interval: 15.0
1920
lateral_jerk: 0.5
@@ -23,6 +24,7 @@
2324
maximum_curvature: 0.07
2425
# geometric pull out
2526
enable_geometric_pull_out: true
27+
geometric_collision_check_distance_from_end: 0.0
2628
divide_pull_out_path: true
2729
geometric_pull_out_velocity: 1.0
2830
arc_path_interval: 1.0

autoware_launch/config/planning/scenario_planning/lane_driving/behavior_planning/behavior_velocity_planner/crosswalk.param.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
enable_stuck_check_in_intersection: false # [-] flag to enable stuck vehicle checking for crosswalk which is in intersection
3131
stuck_vehicle_velocity: 1.0 # [m/s] threshold velocity whether other vehicles are assumed to be stuck or not.
3232
max_stuck_vehicle_lateral_offset: 2.0 # [m] The feature does not handle the vehicles farther than this value to the ego's path.
33-
stuck_vehicle_attention_range: 10.0 # [m] Ego does not enter the crosswalk area if a stuck vehicle exists within this distance from the end of the crosswalk on the ego's path.
33+
required_clearance: 6.0 # [m] clearance to be secured between the ego and the ahead vehicle
3434
min_acc: -1.0 # min acceleration [m/ss]
3535
min_jerk: -1.0 # min jerk [m/sss]
3636
max_jerk: 1.0 # max jerk [m/sss]

autoware_launch/config/planning/scenario_planning/lane_driving/behavior_planning/behavior_velocity_planner/intersection.param.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,8 @@
5959
object_expected_deceleration: 2.0
6060
ignore_on_red_traffic_light:
6161
object_margin_to_path: 2.0
62+
avoid_collision_by_acceleration:
63+
object_time_margin_to_collision_point: 4.0
6264

6365
occlusion:
6466
enable: false

autoware_launch/config/simulator/fault_injection.param.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
vehicle_is_out_of_lane: "lane_departure"
55
trajectory_deviation_is_high: "trajectory_deviation"
66
localization_matching_score_is_low: "ndt_scan_matcher"
7-
localization_accuracy_is_low: "localization_accuracy"
7+
localization_accuracy_is_low: "localization_error_ellipse"
88
map_version_is_different: "map_version"
99
trajectory_is_invalid: "trajectory_point_validation"
1010
cpu_temperature_is_high: "CPU Temperature"

autoware_launch/config/system/system_error_monitor/system_error_monitor.awsim.param.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
/autoware/localization/node_alive_monitoring: default
2525
/autoware/localization/performance_monitoring/matching_score: { sf_at: "warn", lf_at: "none", spf_at: "none" }
26-
/autoware/localization/performance_monitoring/localization_accuracy: { sf_at: "warn", lf_at: "none", spf_at: "none" }
26+
/autoware/localization/performance_monitoring/localization_error_ellipse: { sf_at: "warn", lf_at: "none", spf_at: "none" }
2727

2828
/autoware/map/node_alive_monitoring: default
2929

autoware_launch/config/system/system_error_monitor/system_error_monitor.param.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
/autoware/localization/node_alive_monitoring: default
2525
/autoware/localization/performance_monitoring/matching_score: { sf_at: "warn", lf_at: "none", spf_at: "none" }
26-
/autoware/localization/performance_monitoring/localization_accuracy: default
26+
/autoware/localization/performance_monitoring/localization_error_ellipse: default
2727
/autoware/localization/performance_monitoring/sensor_fusion_status: { sf_at: "error", lf_at: "none", spf_at: "none" }
2828

2929
/autoware/map/node_alive_monitoring: default

autoware_launch/config/system/system_error_monitor/system_error_monitor.planning_simulation.param.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
/autoware/localization/node_alive_monitoring: default
2626
# /autoware/localization/performance_monitoring/matching_score: { sf_at: "warn", lf_at: "none", spf_at: "none" }
27-
# /autoware/localization/performance_monitoring/localization_accuracy: default
27+
# /autoware/localization/performance_monitoring/localization_error_ellipse: default
2828

2929
/autoware/map/node_alive_monitoring: default
3030

autoware_launch/launch/components/tier4_map_component.launch.xml

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
<?xml version="1.0"?>
22
<launch>
3-
<include file="$(find-pkg-share tier4_map_launch)/launch/map.launch.py">
4-
<arg name="lanelet2_map_path" value="$(var map_path)/$(var lanelet2_map_file)"/>
3+
<include file="$(find-pkg-share tier4_map_launch)/launch/map.launch.xml">
54
<arg name="pointcloud_map_path" value="$(var map_path)/$(var pointcloud_map_file)"/>
5+
<arg name="pointcloud_map_metadata_path" value="$(var map_path)/pointcloud_map_metadata.yaml"/>
6+
<arg name="lanelet2_map_path" value="$(var map_path)/$(var lanelet2_map_file)"/>
7+
<arg name="map_projector_info_path" value="$(var map_path)/map_projector_info.yaml"/>
68

79
<arg name="pointcloud_map_loader_param_path" value="$(find-pkg-share autoware_launch)/config/map/pointcloud_map_loader.param.yaml"/>
810
<arg name="lanelet2_map_loader_param_path" value="$(find-pkg-share autoware_launch)/config/map/lanelet2_map_loader.param.yaml"/>

autoware_launch/launch/components/tier4_perception_component.launch.xml

+8
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,14 @@
9696
name="object_recognition_detection_object_velocity_splitter_radar_fusion_param_path"
9797
value="$(find-pkg-share autoware_launch)/config/perception/object_recognition/detection/object_velocity_splitter/object_velocity_splitter_radar_fusion.param.yaml"
9898
/>
99+
<arg
100+
name="object_recognition_detection_object_range_splitter_radar_param_path"
101+
value="$(find-pkg-share autoware_launch)/config/perception/object_recognition/detection/object_range_splitter/object_range_splitter_radar.param.yaml"
102+
/>
103+
<arg
104+
name="object_recognition_detection_object_range_splitter_radar_fusion_param_path"
105+
value="$(find-pkg-share autoware_launch)/config/perception/object_recognition/detection/object_range_splitter/object_range_splitter_radar_fusion.param.yaml"
106+
/>
99107
<arg
100108
name="object_recognition_tracking_multi_object_tracker_data_association_matrix_param_path"
101109
value="$(find-pkg-share autoware_launch)/config/perception/object_recognition/tracking/multi_object_tracker/data_association_matrix.param.yaml"

0 commit comments

Comments
 (0)