You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: planning/behavior_velocity_traffic_light_module/README.md
+15-8
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,13 @@ This module is activated when there is traffic light in ego lane.
19
19
20
20
1. Obtains a traffic light mapped to the route and a stop line correspond to the traffic light from a map information.
21
21
22
-
2. Uses the highest reliability one of the traffic light recognition result and if the color of that was red, generates a stop point.
22
+
- If a corresponding traffic light signal have never been found, it treats as a signal to pass.
23
+
24
+
- If a corresponding traffic light signal is found but timed out, it treats as a signal to stop.
25
+
26
+
2. Uses the highest reliability one of the traffic light recognition result and if the color of that was not green or corresponding arrow signal, generates a stop point.
27
+
28
+
- If an elapsed time to receive stop signal is less than `stop_time_hysteresis`, it treats as a signal to pass. This feature is to prevent chattering.
23
29
24
30
3. When vehicle current velocity is
25
31
@@ -63,12 +69,13 @@ This module is activated when there is traffic light in ego lane.
Copy file name to clipboardexpand all lines: planning/behavior_velocity_traffic_light_module/config/traffic_light.param.yaml
+1
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,7 @@
3
3
traffic_light:
4
4
stop_margin: 0.0
5
5
tl_state_timeout: 1.0
6
+
stop_time_hysteresis: 0.1
6
7
yellow_lamp_period: 2.75
7
8
enable_pass_judge: true
8
9
enable_rtc: true # If set to true, the scene modules require approval from the rtc (request to cooperate) function. If set to false, the modules can be executed without requiring rtc approval
0 commit comments