Skip to content

Commit 578266c

Browse files
committedFeb 15, 2024·
style(pre-commit): autofix
1 parent f0ff9c9 commit 578266c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎perception/traffic_light_arbiter/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@ This package receives traffic signals from perception and external (e.g., V2X) c
99
A node that merges traffic light/signal state from image recognition and external (e.g., V2X) systems to provide to a planning component.
1010

1111
### Signal Match Validator
12+
1213
When `enable_signal_matching` is set to true, this node validates the match between perception signals and external signals.
13-
The table below outlines how the matching process determines the output based on the combination of perception and external signal colors. Each cell represents the outcome when a specific color from a perception signal (columns) intersects with a color from an external signal (rows).
14+
The table below outlines how the matching process determines the output based on the combination of perception and external signal colors. Each cell represents the outcome when a specific color from a perception signal (columns) intersects with a color from an external signal (rows).
1415

1516
| External \ Perception | RED | AMBER | GREEN | UNKNOWN | Not Received |
1617
| --------------------- | ------- | ------- | ------- | ------- | ------------ |
@@ -20,7 +21,6 @@ The table below outlines how the matching process determines the output based on
2021
| UNKNOWN | UNKNOWN | UNKNOWN | UNKNOWN | UNKNOWN | UNKNOWN |
2122
| Not Received | UNKNOWN | UNKNOWN | UNKNOWN | UNKNOWN | UNKNOWN |
2223

23-
2424
### Inputs / Outputs
2525

2626
#### Input

‎perception/traffic_light_arbiter/include/traffic_light_arbiter/signal_match_validator.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,4 +100,4 @@ class SignalMatchValidator
100100
bool isPedestrianSignal(const lanelet::Id & signal_id);
101101
};
102102

103-
#endif
103+
#endif // TRAFFIC_LIGHT_ARBITER__SIGNAL_MATCH_VALIDATOR_HPP_

0 commit comments

Comments
 (0)
Please sign in to comment.