Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: sync tier4/autoware_launch:awf-latest #382

Merged
merged 22 commits into from
Apr 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
d475f03
fix(lane_change): collision check for prepare in intersection (#930)
zulfaqar-azmi-t4 Apr 3, 2024
a1c7059
Merge pull request #366 from tier4/sync-awf-latest
tier4-autoware-public-bot[bot] Apr 3, 2024
f563ff7
feat(autoware_launch): add centerpoint_sigma param (#945)
tzhong518 Apr 4, 2024
38b1ec5
Merge pull request #369 from tier4/sync-awf-latest
tier4-autoware-public-bot[bot] Apr 4, 2024
18173b0
feat(lane_change): check prepare phase in turn direction lanes (#943)
zulfaqar-azmi-t4 Apr 5, 2024
28b7d00
Merge pull request #370 from tier4/sync-awf-latest
tier4-autoware-public-bot[bot] Apr 5, 2024
e37a063
feat(run_out): maintain stop wall for some seconds (#944)
danielsanchezaran Apr 5, 2024
89f74e0
Merge pull request #372 from tier4/sync-awf-latest
tier4-autoware-public-bot[bot] Apr 5, 2024
6f1afbf
chore(ground_segmentation): add tuning param (#946)
badai-nguyen Apr 8, 2024
0d57ad5
Merge pull request #374 from tier4/sync-awf-latest
tier4-autoware-public-bot[bot] Apr 8, 2024
6b2229e
feat(avoidance): limit acceleration during avoidance maneuver (#947)
satoshi-ota Apr 9, 2024
e035a22
Merge pull request #375 from tier4/sync-awf-latest
tier4-autoware-public-bot[bot] Apr 9, 2024
3cdbbe0
fix(trajectory_follower): accommodate the parameters of the controlle…
HansOersted Apr 9, 2024
5f1819f
Merge pull request #376 from tier4/sync-awf-latest
tier4-autoware-public-bot[bot] Apr 9, 2024
c844a88
fix(tier4_control_component_launch): fix duplicate declaration of con…
xuyuan-han Apr 9, 2024
b16eec9
Merge pull request #377 from tier4/sync-awf-latest
tier4-autoware-public-bot[bot] Apr 9, 2024
4d5865c
chore(intersection_occlusion): increase possible_object_bbox size to …
soblin Apr 10, 2024
2d034f3
Merge pull request #378 from tier4/sync-awf-latest
tier4-autoware-public-bot[bot] Apr 10, 2024
727ca26
refactor(avoidance, AbLC): rebuild parameter structure (#951)
satoshi-ota Apr 11, 2024
24dfbdb
Merge pull request #380 from tier4/sync-awf-latest
tier4-autoware-public-bot[bot] Apr 11, 2024
55009f3
refactor(avoidance): unify redundant parameters (#953)
satoshi-ota Apr 12, 2024
c9663f0
Merge pull request #381 from tier4/sync-awf-latest
tier4-autoware-public-bot[bot] Apr 12, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
# -- vehicle model --
vehicle_model_type: "kinematics" # vehicle model type for mpc prediction. option is kinematics, kinematics_no_delay, and dynamics
input_delay: 0.24 # steering input delay time for delay compensation
vehicle_model_steer_tau: 0.3 # steering dynamics time constant (1d approximation) [s]
vehicle_model_steer_tau: 0.27 # steering dynamics time constant (1d approximation) [s]
steer_rate_lim_dps_list_by_curvature: [40.0, 50.0, 60.0] # steering angle rate limit list depending on curvature [deg/s]
curvature_list_for_steer_rate_lim: [0.001, 0.002, 0.01] # curvature list for steering angle rate limit interpolation in ascending order [/m]
steer_rate_lim_dps_list_by_velocity: [60.0, 50.0, 40.0] # steering angle rate limit list depending on velocity [deg/s]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**:
ros__parameters:
delay_compensation_time: 0.17
delay_compensation_time: 0.1

enable_smooth_stop: true
enable_overshoot_emergency: true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
iou_nms_threshold: 0.1
yaw_norm_thresholds: [0.3, 0.3, 0.3, 0.3, 0.0]
score_threshold: 0.35
has_variance: false
has_twist: false
trt_precision: fp16
densification_num_past_frames: 1
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
/**:
ros__parameters:
class_names: ["CAR", "TRUCK", "BUS", "BICYCLE", "PEDESTRIAN"]
point_feature_size: 4
max_voxel_size: 40000
point_cloud_range: [-76.8, -76.8, -4.0, 76.8, 76.8, 6.0]
voxel_size: [0.32, 0.32, 10.0]
downsample_factor: 1
encoder_in_feature_size: 9
# 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]
score_threshold: 0.35
has_variance: true
has_twist: true
trt_precision: fp16
densification_num_past_frames: 1
densification_world_frame_id: map

# weight files
encoder_onnx_path: "$(var model_path)/pts_voxel_encoder_$(var model_name).onnx"
encoder_engine_path: "$(var model_path)/pts_voxel_encoder_$(var model_name).engine"
head_onnx_path: "$(var model_path)/pts_backbone_neck_head_$(var model_name).onnx"
head_engine_path: "$(var model_path)/pts_backbone_neck_head_$(var model_name).engine"
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
iou_nms_threshold: 0.1
yaw_norm_thresholds: [0.3, 0.3, 0.3, 0.3, 0.0]
score_threshold: 0.35
has_variance: false
has_twist: false
trt_precision: fp16
densification_num_past_frames: 1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
detection_range_z_max: 2.5
elevation_grid_mode: true
use_recheck_ground_cluster: true
use_lowest_point: true
low_priority_region_x: -20.0
center_pcl_shift: 0.0
radial_divider_angle_deg: 1.0

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
target_object:
car:
execute_num: 2 # [-]
moving_speed_threshold: 1.0 # [m/s]
moving_time_threshold: 1.0 # [s]
th_moving_speed: 1.0 # [m/s]
th_moving_time: 1.0 # [s]
max_expand_ratio: 0.0 # [-]
envelope_buffer_margin: 0.3 # [m]
lateral_margin:
Expand All @@ -18,8 +18,8 @@
hard_margin_for_parked_vehicle: 0.0 # [m]
truck:
execute_num: 2
moving_speed_threshold: 1.0 # 3.6km/h
moving_time_threshold: 1.0
th_moving_speed: 1.0 # 3.6km/h
th_moving_time: 1.0
max_expand_ratio: 0.0
envelope_buffer_margin: 0.3
lateral_margin:
Expand All @@ -28,8 +28,8 @@
hard_margin_for_parked_vehicle: 0.0 # [m]
bus:
execute_num: 2
moving_speed_threshold: 1.0 # 3.6km/h
moving_time_threshold: 1.0
th_moving_speed: 1.0 # 3.6km/h
th_moving_time: 1.0
max_expand_ratio: 0.0
envelope_buffer_margin: 0.3
lateral_margin:
Expand All @@ -38,8 +38,8 @@
hard_margin_for_parked_vehicle: 0.0 # [m]
trailer:
execute_num: 2
moving_speed_threshold: 1.0 # 3.6km/h
moving_time_threshold: 1.0
th_moving_speed: 1.0 # 3.6km/h
th_moving_time: 1.0
max_expand_ratio: 0.0
envelope_buffer_margin: 0.3
lateral_margin:
Expand All @@ -48,8 +48,8 @@
hard_margin_for_parked_vehicle: 0.0 # [m]
unknown:
execute_num: 1
moving_speed_threshold: 0.28 # 1.0km/h
moving_time_threshold: 1.0
th_moving_speed: 0.28 # 1.0km/h
th_moving_time: 1.0
max_expand_ratio: 0.0
envelope_buffer_margin: 0.3
lateral_margin:
Expand All @@ -58,8 +58,8 @@
hard_margin_for_parked_vehicle: 0.0 # [m]
bicycle:
execute_num: 2
moving_speed_threshold: 0.28 # 1.0km/h
moving_time_threshold: 1.0
th_moving_speed: 0.28 # 1.0km/h
th_moving_time: 1.0
max_expand_ratio: 0.0
envelope_buffer_margin: 0.8
lateral_margin:
Expand All @@ -68,8 +68,8 @@
hard_margin_for_parked_vehicle: 1.0 # [m]
motorcycle:
execute_num: 2
moving_speed_threshold: 1.0 # 3.6km/h
moving_time_threshold: 1.0
th_moving_speed: 1.0 # 3.6km/h
th_moving_time: 1.0
max_expand_ratio: 0.0
envelope_buffer_margin: 0.8
lateral_margin:
Expand All @@ -78,8 +78,8 @@
hard_margin_for_parked_vehicle: 1.0 # [m]
pedestrian:
execute_num: 2
moving_speed_threshold: 0.28 # 1.0km/h
moving_time_threshold: 1.0
th_moving_speed: 0.28 # 1.0km/h
th_moving_time: 1.0
max_expand_ratio: 0.0
envelope_buffer_margin: 0.8
lateral_margin:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,10 @@
pedestrian: true

# collision check
enable_prepare_segment_collision_check: false
enable_collision_check_for_prepare_phase:
general_lanes: false
intersection: true
turns: true
prepare_segment_ignore_object_velocity_thresh: 0.1 # [m/s]
check_objects_on_current_lanes: false
check_objects_on_other_lanes: false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@
creep_velocity: 0.8333
peeking_offset: -0.5
occlusion_required_clearance_distance: 55.0
possible_object_bbox: [1.5, 2.5]
possible_object_bbox: [1.75, 2.5]
ignore_parked_vehicle_speed_threshold: 0.8333
occlusion_detection_hold_time: 1.5
temporal_stop_time_before_peeking: 0.1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
ego_cut_line_length: 3.0 # The width of the ego's cut line
ego_footprint_extra_margin: 0.5 # [m] expand the ego vehicles' footprint by this value on all sides when building the ego footprint path
keep_obstacle_on_path_time_threshold: 1.0 # [s] How much time a previous run out target obstacle is kept in the run out candidate list if it enters the ego path.
keep_stop_point_time: 1.0 # [s] If a stop point is issued by this module, keep the stop point for this many seconds. Only works if approach is disabled

# Parameter to create abstracted dynamic obstacles
dynamic_obstacle:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,6 @@
<arg name="nearest_search_param_path" value="$(find-pkg-share autoware_launch)/config/control/common/nearest_search.param.yaml"/>

<!-- package param path -->
<arg name="lat_controller_param_path" value="$(var lat_controller_param_path)"/>
<arg name="lon_controller_param_path" value="$(var lon_controller_param_path)"/>
<arg name="vehicle_cmd_gate_param_path" value="$(find-pkg-share autoware_launch)/config/control/vehicle_cmd_gate/vehicle_cmd_gate.param.yaml"/>
<arg name="lane_departure_checker_param_path" value="$(find-pkg-share autoware_launch)/config/control/lane_departure_checker/lane_departure_checker.param.yaml"/>
<arg name="control_validator_param_path" value="$(find-pkg-share autoware_launch)/config/control/control_validator/control_validator.param.yaml"/>
Expand Down
Loading