Skip to content

Commit 950ec0f

Browse files
Reorder TrafficSigns and Geometry
1 parent de54413 commit 950ec0f

File tree

2 files changed

+387
-380
lines changed

2 files changed

+387
-380
lines changed

osi_detectedlandmark.proto

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -86,52 +86,52 @@ message DetectedTrafficSign
8686
//
8787
GEOMETRY_OTHER = 1;
8888

89-
// Traffic sign has a triangular geometry pointing to the top.
89+
// Traffic sign has a circular geometry. (0 corners)
9090
//
91-
GEOMETRY_TRIANGLE_TOP = 2;
91+
GEOMETRY_CIRCLE = 2;
9292

93-
//Traffic sign has a triangular geometry pointing down.
93+
// Traffic sign has a triangular geometry pointing to the top. (3 corners)
9494
//
95-
GEOMETRY_TRIANGLE_DOWN = 3;
95+
GEOMETRY_TRIANGLE_TOP = 3;
9696

97-
// Traffic sign has a circular geometry.
97+
//Traffic sign has a triangular geometry pointing down. (3 corners)
9898
//
99-
GEOMETRY_CIRCLE = 4;
99+
GEOMETRY_TRIANGLE_DOWN = 4;
100100

101-
// Traffic sign has a square geometry.
101+
// Traffic sign has a square geometry. (4 corners)
102102
//
103103
GEOMETRY_SQUARE = 5;
104104

105-
// Traffic sign has a diamond geometry.
105+
// Traffic sign that has a pole geometry. (height is bigger than
106+
// width e.g. pole indicating highways exit in xx [m]). (4 corners)
106107
//
107-
GEOMETRY_DIAMOND = 6;
108+
GEOMETRY_POLE = 6;
108109

109-
// Traffic sign has an octagon geometry.
110+
// Traffic sign has a rectangle geometry. (width is bigger than
111+
// height e.g. one-way) (4 corners)
110112
//
111-
GEOMETRY_OCTAGON = 7;
113+
GEOMETRY_RECTANGLE = 7;
112114

113-
// Traffic sign has a geometry of an arrow pointing to the left.
115+
// Traffic sign that has an oversize rectangle geometry. (4 corners)
116+
// E.g. direction plates on highway or city signs.
114117
//
115-
GEOMETRY_ARROW_LEFT = 8;
118+
GEOMETRY_PLATE = 8;
116119

117-
// Traffic sign has a geometry of an arrow pointing to the right.
120+
// Traffic sign has a diamond geometry. (4 corners)
118121
//
119-
GEOMETRY_ARROW_RIGHT = 9;
122+
GEOMETRY_DIAMOND = 9;
120123

121-
// Traffic sign has a rectangle geometry. (width is bigger than
122-
// height e.g. one-way)
124+
// Traffic sign has a geometry of an arrow pointing to the left. (5 corners)
123125
//
124-
GEOMETRY_RECTANGLE = 10;
126+
GEOMETRY_ARROW_LEFT = 10;
125127

126-
// Traffic sign that has a pole geometry. (height is bigger than
127-
// width e.g. pole indicating highways exit in xx [m]).
128+
// Traffic sign has a geometry of an arrow pointing to the right. (5 corners)
128129
//
129-
GEOMETRY_POLE = 11;
130+
GEOMETRY_ARROW_RIGHT = 11;
130131

131-
// Traffic sign that has an oversize rectangle geometry.
132-
// E.g. direction plates on highway or city signs.
132+
// Traffic sign has an octagon geometry. (8 corners)
133133
//
134-
GEOMETRY_PLATE = 12;
134+
GEOMETRY_OCTAGON = 12;
135135
}
136136
}
137137

0 commit comments

Comments
 (0)