Skip to content

Commit

Permalink
feat(goal_planner): safer safety checker (#701)
Browse files Browse the repository at this point in the history
* feat(goal_planner): safer safety checker

Signed-off-by: kosuke55 <[email protected]>

fix

fix

fix

fix

* disable safety check

Signed-off-by: kosuke55 <[email protected]>

---------

Signed-off-by: kosuke55 <[email protected]>
  • Loading branch information
kosuke55 authored Nov 26, 2023
1 parent 7580bc7 commit 860dc12
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 860dc12

Please sign in to comment.