Skip to content

Commit 6a6584c

Browse files
committed
removed tab and resolved merge conflict
2 parents e519f52 + 27c9921 commit 6a6584c

File tree

5 files changed

+102
-102
lines changed

5 files changed

+102
-102
lines changed

osi_modelinternal.proto

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ message ModelInternalObject
4040
//
4141
enum ObjectType
4242
{
43-
// The object type is unknown. Value must not be used in ground truth.
43+
// The object type is unknown. Value must not be used in ground truth.
4444
//
4545
OBJECT_TYPE_UNKNOWN = 0;
4646

@@ -67,8 +67,8 @@ message ModelInternalObject
6767
// Object of type \c TrafficLight.
6868
//
6969
OBJECT_TYPE_TRAFFIC_LIGHT = 6;
70-
71-
// Object is a ghost object and does not exist in ground truth.
70+
71+
// Object is a ghost object and does not exist in ground truth.
7272
//
7373
OBJECT_TYPE_GHOST = 7;
7474
}

osi_object.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ message MovingObject
261261
// Definition of object types.
262262
//
263263
enum Type
264-
{
264+
{
265265
// Type of the object is unknown (must not be used in ground truth).
266266
//
267267
TYPE_UNKNOWN = 0;

osi_sensordata.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ message SensorData
169169
//
170170
optional DetectedEntityHeader lane_header = 16;
171171

172-
// The list of lane detected by the sensor
172+
// The list of lanes detected by the sensor
173173
//
174174
// \note OSI uses singular instead of plural for repeated field names.
175175
//

osi_sensorview.proto

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ package osi;
2929
// treatment of the sensors.
3030
//
3131
// Alternatively combined sensor models can also consume one combined
32-
// \c SensorView, with either combined or seperate \c SensorData outputs,
32+
// \c SensorView, with either combined or separate \c SensorData outputs,
3333
// depending on model architecture.
3434
//
3535
message SensorView
@@ -141,7 +141,7 @@ message SensorView
141141
//
142142
// Radar specific sensor view data.
143143
//
144-
message RadarSensorView
144+
message RadarSensorView
145145
{
146146
// Radar Input Configuration valid at the time the data was created.
147147
//
@@ -158,8 +158,8 @@ message RadarSensorView
158158

159159
//
160160
// \brief Definition of the radar reflection.
161-
//
162-
message Reflection
161+
//
162+
message Reflection
163163
{
164164
// Relative signal level of the reflection.
165165
//
@@ -171,7 +171,7 @@ message RadarSensorView
171171
// Unit: [dB]
172172
//
173173
optional double signal_strength = 1;
174-
174+
175175
// Time of flight.
176176
//
177177
// This is the time of flight of the reflection, which is directly
@@ -180,15 +180,15 @@ message RadarSensorView
180180
// Unit: [s]
181181
//
182182
optional double time_of_flight = 2;
183-
183+
184184
// Doppler shift.
185185
//
186186
// Shift in frequency based on the specified TX frequency.
187187
//
188188
// Unit: [Hz]
189189
//
190190
optional double doppler_shift = 3;
191-
191+
192192
// TX horizontal angle (azimuth).
193193
//
194194
// Horizontal angle of incidence of the source of the reflection
@@ -197,7 +197,7 @@ message RadarSensorView
197197
// Unit: [rad]
198198
//
199199
optional double source_horizontal_angle = 4;
200-
200+
201201
// TX vertical angle (elevation).
202202
//
203203
// Vertical angle of incidence of the source of the reflection
@@ -214,12 +214,12 @@ message RadarSensorView
214214
//
215215
// Lidar specific sensor view data.
216216
//
217-
message LidarSensorView
217+
message LidarSensorView
218218
{
219219
// Lidar View Configuration valid at the time the data was created.
220220
//
221221
optional LidarSensorViewConfiguration view_configuration = 1;
222-
222+
223223
// Ray Tracing Data.
224224
//
225225
// This field includes one entry for each ray, in left-to-right,
@@ -244,7 +244,7 @@ message LidarSensorView
244244
// Unit: [dB]
245245
//
246246
optional double signal_strength = 1;
247-
247+
248248
// Time of flight.
249249
//
250250
// This is the time of flight of the reflection, which is directly
@@ -253,7 +253,7 @@ message LidarSensorView
253253
// Unit: [s]
254254
//
255255
optional double time_of_flight = 2;
256-
256+
257257
// Doppler shift.
258258
//
259259
// Shift in frequency based on the specified TX frequency.
@@ -269,12 +269,12 @@ message LidarSensorView
269269
//
270270
// Camera specific sensor view data.
271271
//
272-
message CameraSensorView
273-
{
272+
message CameraSensorView
273+
{
274274
// Camera View Configuration valid at the time the data was created.
275275
//
276276
optional CameraSensorViewConfiguration view_configuration = 1;
277-
277+
278278
// Raw Image Data.
279279
//
280280
// The raw image data in the memory layout and order specified by the
@@ -287,7 +287,7 @@ message CameraSensorView
287287
// \brief Definition of the ultrasonic sensor view.
288288
//
289289
// Ultrasonic specific sensor view data.
290-
message UltrasonicSensorView
290+
message UltrasonicSensorView
291291
{
292292
// Ultrasonic Input Configuration valid at the time the data was created.
293293
//

0 commit comments

Comments
 (0)