-
Notifications
You must be signed in to change notification settings - Fork 0
/
osi_trafficlight.proto
267 lines (217 loc) · 7.28 KB
/
osi_trafficlight.proto
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
syntax = "proto2";
option optimize_for = SPEED;
import "osi_common.proto";
package osi3;
//
// \brief A traffic light.
//
// \image html OSI_TrafficLight.svg
//
// One traffic light message defines a single 'bulb' and not a box of several
// bulbs, e.g. red, yellow, green are three separate traffic lights.
//
message TrafficLight
{
// The ID of the traffic light.
//
optional Identifier id = 1;
// The base parameters of the traffic light.
//
// \c BaseStationary::orientation x-axis is view normal of the traffic
// light's icon.
//
optional BaseStationary base = 2;
// The classification data for the traffic light.
//
optional Classification classification = 3;
//
// \brief \c Classification data for a traffic light.
//
message Classification
{
// The color of the traffic light.
//
// \note If the color of the traffic light is known (from history or
// geometrical arrangement) and the state \c #mode is
// \c #MODE_OFF then \c #color could remain unchanged.
// If traffic light displays images in different colors and traffic
// light is off ( \c #mode = \c #MODE_OFF), then \c #color = \c
// #COLOR_OTHER .
//
optional Color color = 1;
// The icon of the traffic light.
//
optional Icon icon = 2;
// The operating mode of the traffic light.
//
optional Mode mode = 3;
// The value of the countdown counter.
// Unit: [%] or [s]
//
// \note Set value only if traffic light bulb is a countdown counter.
//
optional double counter = 4;
// The IDs of the lanes that the traffic light is assigned to.
// Might be multiple if the traffic light is valid for multiple driving
// lanes.
//
// \note OSI uses singular instead of plural for repeated field names.
//
repeated Identifier assigned_lane_id = 5;
// Boolean flag to indicate that the traffic light is taken out of service.
// This can be achieved by visibly crossing the light, covering it completely
// or swiching the traffic light off.
//
optional bool is_out_of_service = 6;
// Definition of colors for traffic lights.
//
enum Color
{
// Color is unknown (must not be used in ground truth).
//
COLOR_UNKNOWN = 0;
// Other (unspecified but known) color.
//
COLOR_OTHER = 1;
// Red light.
//
COLOR_RED = 2;
// Orange-yellow light.
//
COLOR_YELLOW = 3;
// Green light.
//
COLOR_GREEN = 4;
// Blue light.
//
COLOR_BLUE = 5;
// White light.
//
COLOR_WHITE = 6;
}
// Definition of traffic light bulb icon.
//
enum Icon
{
// Unknown icon of traffic light (must not be used in ground truth).
//
ICON_UNKNOWN = 0;
// Other (unspecified but known) icon of traffic light.
//
ICON_OTHER = 1;
// This is a normal traffic light without specification of e.g.
// direction.
//
ICON_NONE = 2;
// This traffic light applies to the lane straight ahead.
//
ICON_ARROW_STRAIGHT_AHEAD = 3;
// This traffic light applies to left turns.
//
ICON_ARROW_LEFT = 4;
// This traffic light applies to diagonal left turns.
//
ICON_ARROW_DIAG_LEFT = 5;
// This traffic light applies to a lane allowing to drive straight
// ahead or to turn left.
//
ICON_ARROW_STRAIGHT_AHEAD_LEFT = 6;
// This traffic light applies to right turns.
//
ICON_ARROW_RIGHT = 7;
// This traffic light applies to diagonal right turns.
//
ICON_ARROW_DIAG_RIGHT = 8;
// This traffic light applies to a lane allowing to drive straight
// ahead or to turn right.
//
ICON_ARROW_STRAIGHT_AHEAD_RIGHT = 9;
// This traffic light applies to a lane allowing to turn left or
// right.
//
ICON_ARROW_LEFT_RIGHT = 10;
// This traffic light indicates that the assigned lane is open for
// driving.
//
ICON_ARROW_DOWN = 11;
// This traffic light indicates a necessary lane change to the left
// ahead.
//
ICON_ARROW_DOWN_LEFT = 12;
// This traffic light indicates a necessary lane change to the right
// ahead.
//
ICON_ARROW_DOWN_RIGHT = 13;
// This traffic light indicates that the assigned lane is not open
// for driving.
//
ICON_ARROW_CROSS = 14;
// This traffic light is valid for pedestrians.
//
ICON_PEDESTRIAN = 15;
// This traffic light is valid for pedestrians with letters 'walk'.
//
ICON_WALK = 16;
// This traffic light is valid for pedestrians with letters 'don't
// walk'.
//
ICON_DONT_WALK = 17;
// This traffic light is valid for bicyclists.
//
ICON_BICYCLE = 18;
// This traffic light is valid for pedestrians and bicyclists.
//
ICON_PEDESTRIAN_AND_BICYCLE = 19;
// This traffic light counter in second.
//
ICON_COUNTDOWN_SECONDS = 20;
// This traffic light counter in percent.
//
ICON_COUNTDOWN_PERCENT = 21;
// This traffic light is valid for
// trams.
//
// \note There is no detailed traffic light specification for trams
// and buses at the moment.
//
ICON_TRAM = 22;
// This traffic light is valid for
// buses.
//
// \note There is no detailed traffic light specification for trams
// and buses at the moment.
//
ICON_BUS = 23;
// This traffic light is valid for
// buses and trams.
//
// \note There is no detailed traffic light specification for trams
// and buses at the moment.
//
ICON_BUS_AND_TRAM = 24;
}
// Definition of light modes for traffic lights.
//
enum Mode
{
// Mode is unknown (must not be used in ground truth).
//
MODE_UNKNOWN = 0;
// Other (unspecified but known) mode.
//
MODE_OTHER = 1;
// Traffic light is off.
//
MODE_OFF = 2;
// Light is on and not flashing.
//
MODE_CONSTANT = 3;
// Light is flashing.
//
MODE_FLASHING = 4;
// Light is counting.
//
MODE_COUNTING = 5;
}
}
}