From 860dc12299f6a34be8c48da9b8bae6e3c6a7b602 Mon Sep 17 00:00:00 2001 From: Kosuke Takeuchi Date: Sun, 26 Nov 2023 23:18:48 +0900 Subject: [PATCH] feat(goal_planner): safer safety checker (#701) * feat(goal_planner): safer safety checker Signed-off-by: kosuke55 fix fix fix fix * disable safety check Signed-off-by: kosuke55 --------- Signed-off-by: kosuke55 --- .../goal_planner/goal_planner.param.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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 d04676f365..118268d854 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 @@ -130,7 +130,7 @@ safety_check_time_horizon: 5.0 safety_check_time_resolution: 1.0 # detection range - object_check_forward_distance: 10.0 + object_check_forward_distance: 100.0 object_check_backward_distance: 100.0 ignore_object_velocity_threshold: 1.0 # ObjectTypesToCheck @@ -160,6 +160,7 @@ safety_check_params: # safety check configuration enable_safety_check: false # Don't set to true if auto_mode is enabled + method: "integral_predicted_polygon" keep_unsafe_time: 3.0 # collision check parameters check_all_predicted_path: true @@ -170,6 +171,11 @@ lateral_distance_max_threshold: 2.0 longitudinal_distance_min_threshold: 3.0 longitudinal_velocity_delta_time: 0.8 + integral_predicted_polygon_params: + forward_margin: 1.0 + backward_margin: 1.0 + lat_margin: 1.0 + time_horizon: 10.0 # hysteresis factor to expand/shrink polygon with the value hysteresis_factor_expand_rate: 1.0 # temporary