Skip to content

Commit e87306d

Browse files
authored
feat(behavior_velocity_planner::intersection): add occlusion detection feature (autowarefoundation#305)
* migrated Signed-off-by: Mamoru Sobue <mamoru.sobue@tier4.jp> * fixed param Signed-off-by: Mamoru Sobue <mamoru.sobue@tier4.jp> * remove some params Signed-off-by: Mamoru Sobue <mamoru.sobue@tier4.jp> * organized param Signed-off-by: Mamoru Sobue <mamoru.sobue@tier4.jp> * disable occlusion feature off by default Signed-off-by: Mamoru Sobue <mamoru.sobue@tier4.jp> --------- Signed-off-by: Mamoru Sobue <mamoru.sobue@tier4.jp>
1 parent 0a82e31 commit e87306d

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

autoware_launch/config/planning/scenario_planning/lane_driving/behavior_planning/behavior_velocity_planner/intersection.param.yaml

+11
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,16 @@
2828
collision_end_margin_time: 6.0 # [s] this + state_transit_margin_time should be higher to account for collision with slow/decelerating object
2929
keep_detection_vel_thr: 0.833 # == 3.0km/h. keep detection if ego is ego.vel < keep_detection_vel_thr
3030

31+
occlusion:
32+
enable: false
33+
occlusion_detection_area_length: 70.0 # [m]
34+
occlusion_creep_velocity: 0.8333 # the creep velocity to occlusion limit stop line
35+
free_space_max: 43
36+
occupied_min: 58
37+
do_dp: true
38+
before_creep_stop_time: 1.0 # [s]
39+
min_vehicle_brake_for_rss: -2.5 # [m/s^2]
40+
max_vehicle_velocity_for_rss: 16.66 # [m/s] == 60kmph
41+
3142
merge_from_private:
3243
stop_duration_sec: 1.0

autoware_launch/config/planning/scenario_planning/lane_driving/behavior_planning/rtc_auto_mode_manager/rtc_auto_mode_manager.param.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
- "avoidance_right"
1616
- "pull_over"
1717
- "pull_out"
18+
- "intersection_occlusion"
1819

1920
default_enable_list:
2021
- "blind_spot"
@@ -29,3 +30,4 @@
2930
- "avoidance_right"
3031
- "pull_over"
3132
- "pull_out"
33+
- "intersection_occlusion"

0 commit comments

Comments
 (0)