From 7623f6fea0da7ad2a949b81b5b85b16ebd714a1e Mon Sep 17 00:00:00 2001 From: Kyoichi Sugahara Date: Thu, 8 Feb 2024 01:25:07 +0900 Subject: [PATCH 1/3] feat(start/goal_planner): remove unused param and update time horizon for goal planner's safety check (#863) * remove unused param Signed-off-by: kyoichi-sugahara * update safety check time horizon Signed-off-by: kyoichi-sugahara --------- Signed-off-by: kyoichi-sugahara --- .../behavior_path_planner/goal_planner/goal_planner.param.yaml | 3 +-- .../start_planner/start_planner.param.yaml | 1 - 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/autoware_launch/config/planning/scenario_planning/lane_driving/behavior_planning/behavior_path_planner/goal_planner/goal_planner.param.yaml b/autoware_launch/config/planning/scenario_planning/lane_driving/behavior_planning/behavior_path_planner/goal_planner/goal_planner.param.yaml index d03efa405f..6d82e7790d 100644 --- a/autoware_launch/config/planning/scenario_planning/lane_driving/behavior_planning/behavior_path_planner/goal_planner/goal_planner.param.yaml +++ b/autoware_launch/config/planning/scenario_planning/lane_driving/behavior_planning/behavior_path_planner/goal_planner/goal_planner.param.yaml @@ -128,7 +128,7 @@ delay_until_departure: 1.0 # For target object filtering target_filtering: - safety_check_time_horizon: 5.0 + safety_check_time_horizon: 10.0 safety_check_time_resolution: 1.0 # detection range object_check_forward_distance: 100.0 @@ -164,7 +164,6 @@ method: "integral_predicted_polygon" keep_unsafe_time: 3.0 # collision check parameters - check_all_predicted_path: true publish_debug_marker: false rss_params: rear_vehicle_reaction_time: 2.0 diff --git a/autoware_launch/config/planning/scenario_planning/lane_driving/behavior_planning/behavior_path_planner/start_planner/start_planner.param.yaml b/autoware_launch/config/planning/scenario_planning/lane_driving/behavior_planning/behavior_path_planner/start_planner/start_planner.param.yaml index 154c4b1e0b..5edf7d468b 100644 --- a/autoware_launch/config/planning/scenario_planning/lane_driving/behavior_planning/behavior_path_planner/start_planner/start_planner.param.yaml +++ b/autoware_launch/config/planning/scenario_planning/lane_driving/behavior_planning/behavior_path_planner/start_planner/start_planner.param.yaml @@ -127,7 +127,6 @@ # safety check configuration enable_safety_check: true # collision check parameters - check_all_predicted_path: true publish_debug_marker: false rss_params: rear_vehicle_reaction_time: 2.0 From 0ce46ea580d6e782136157512079da9b0b30a56c Mon Sep 17 00:00:00 2001 From: kminoda <44218668+kminoda@users.noreply.github.com> Date: Thu, 8 Feb 2024 09:02:15 +0900 Subject: [PATCH 2/3] feat: remove use_pointcloud_container (#806) * feat!: remove use_pointcloud_container Signed-off-by: kminoda * style(pre-commit): autofix * remove unnecessary files Signed-off-by: kminoda * revert: revert change in declaration of sample vehicle and sensor_kit Signed-off-by: kminoda --------- Signed-off-by: kminoda Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> --- autoware_launch/launch/autoware.launch.xml | 10 ++++------ .../components/tier4_planning_component.launch.xml | 1 - .../components/tier4_sensing_component.launch.xml | 1 - autoware_launch/launch/logging_simulator.launch.xml | 2 -- autoware_launch/launch/planning_simulator.launch.xml | 2 -- 5 files changed, 4 insertions(+), 12 deletions(-) diff --git a/autoware_launch/launch/autoware.launch.xml b/autoware_launch/launch/autoware.launch.xml index 7de7741be2..91a12aebfe 100644 --- a/autoware_launch/launch/autoware.launch.xml +++ b/autoware_launch/launch/autoware.launch.xml @@ -56,12 +56,10 @@ - - - - - - + + + + diff --git a/autoware_launch/launch/components/tier4_planning_component.launch.xml b/autoware_launch/launch/components/tier4_planning_component.launch.xml index cbc2349a6e..3d57f6198e 100644 --- a/autoware_launch/launch/components/tier4_planning_component.launch.xml +++ b/autoware_launch/launch/components/tier4_planning_component.launch.xml @@ -7,7 +7,6 @@ - diff --git a/autoware_launch/launch/components/tier4_sensing_component.launch.xml b/autoware_launch/launch/components/tier4_sensing_component.launch.xml index fe520e1fdc..4cd6eccbaa 100644 --- a/autoware_launch/launch/components/tier4_sensing_component.launch.xml +++ b/autoware_launch/launch/components/tier4_sensing_component.launch.xml @@ -5,7 +5,6 @@ - diff --git a/autoware_launch/launch/logging_simulator.launch.xml b/autoware_launch/launch/logging_simulator.launch.xml index 57cbc38af6..77d17d7897 100644 --- a/autoware_launch/launch/logging_simulator.launch.xml +++ b/autoware_launch/launch/logging_simulator.launch.xml @@ -21,7 +21,6 @@ - @@ -55,7 +54,6 @@ - diff --git a/autoware_launch/launch/planning_simulator.launch.xml b/autoware_launch/launch/planning_simulator.launch.xml index d19c7308f0..cf56413121 100644 --- a/autoware_launch/launch/planning_simulator.launch.xml +++ b/autoware_launch/launch/planning_simulator.launch.xml @@ -50,8 +50,6 @@ - - From a027fa9a30487684d68b83d7a52835b5e645a610 Mon Sep 17 00:00:00 2001 From: Mamoru Sobue Date: Thu, 8 Feb 2024 10:03:31 +0900 Subject: [PATCH 3/3] chore(intersection): target type param (#851) Signed-off-by: Mamoru Sobue --- .../intersection.param.yaml | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/autoware_launch/config/planning/scenario_planning/lane_driving/behavior_planning/behavior_velocity_planner/intersection.param.yaml b/autoware_launch/config/planning/scenario_planning/lane_driving/behavior_planning/behavior_velocity_planner/intersection.param.yaml index 8e50a451f3..68d4070cbf 100644 --- a/autoware_launch/config/planning/scenario_planning/lane_driving/behavior_planning/behavior_velocity_planner/intersection.param.yaml +++ b/autoware_launch/config/planning/scenario_planning/lane_driving/behavior_planning/behavior_velocity_planner/intersection.param.yaml @@ -15,6 +15,14 @@ enable_pass_judge_before_default_stopline: false stuck_vehicle: + target_type: + car: true + bus: true + truck: true + trailer: true + motorcycle: false + bicycle: false + unknown: false turn_direction: left: true right: true @@ -27,6 +35,14 @@ disable_against_private_lane: true yield_stuck: + target_type: + car: true + bus: true + truck: true + trailer: true + motorcycle: false + bicycle: false + unknown: false turn_direction: left: true right: true @@ -37,6 +53,14 @@ consider_wrong_direction_vehicle: false collision_detection_hold_time: 0.5 min_predicted_path_confidence: 0.05 + target_type: + car: true + bus: true + truck: true + trailer: true + motorcycle: true + bicycle: true + unknown: false velocity_profile: use_upstream: true minimum_upstream_velocity: 0.01