Skip to content

Commit

Permalink
Merge pull request #517 from tier4/hotfix/v0.46.0/cherry-pick-avoidance
Browse files Browse the repository at this point in the history
fix(static_obstacle_avoidance): cherry pick avoidance PRs
  • Loading branch information
shmpwk authored Jul 31, 2024
2 parents f628922 + 671eca2 commit 33b2cc2
Showing 1 changed file with 12 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -138,8 +138,11 @@

# params for avoidance of vehicle type objects that are ambiguous as to whether they are parked.
avoidance_for_ambiguous_vehicle:
enable: true # [-]
closest_distance_to_wait_and_see: 10.0 # [m]
# policy for ego behavior for ambiguous vehicle.
# "auto" : generate candidate path. if RTC is running as AUTO mode, the ego avoids it automatically.
# "manual" : generate candidate path and wait operator approval even if RTC is running as AUTO mode.
# "ignore" : never avoid it.
policy: "auto" # [-]
condition:
th_stopped_time: 3.0 # [s]
th_moving_distance: 1.0 # [m]
Expand All @@ -149,11 +152,18 @@
crosswalk:
front_distance: 30.0 # [m]
behind_distance: 30.0 # [m]
wait_and_see:
target_behaviors: ["MERGING", "DEVIATING"] # [-]
th_closest_distance: 10.0 # [m]

# params for filtering objects that are in intersection
intersection:
yaw_deviation: 0.349 # [rad] (default 20.0deg)

freespace:
condition:
th_stopped_time: 5.0 # [-]

# For safety check
safety_check:
# safety check target type
Expand Down

0 comments on commit 33b2cc2

Please sign in to comment.