Skip to content

Commit 0624063

Browse files
committed
Removing the note on OSI using singular for plural everywhere
Signed-off-by: PhRosenberger <philipp.rosenberger@tu-darmstadt.de>
1 parent 412521e commit 0624063

15 files changed

+0
-110
lines changed

osi_datarecording.proto

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ message SensorDataSeries
1414
{
1515
// List of sensor data messages for subsequent time steps.
1616
//
17-
// \note OSI uses singular instead of plural for repeated field names.
18-
//
1917
repeated SensorData sensor_data = 1;
2018
}
2119

@@ -27,7 +25,5 @@ message SensorDataSeriesList
2725
{
2826
// List of sensor data for multiple sensors at subsequent time steps.
2927
//
30-
// \note OSI uses singular instead of plural for repeated field names.
31-
//
3228
repeated SensorDataSeries sensor = 1;
3329
}

osi_detectedlane.proto

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@ message DetectedLane
1919

2020
// A list of candidates for this lane as estimated by the sensor.
2121
//
22-
// \note OSI uses singular instead of plural for repeated field names.
23-
//
2422
repeated CandidateLane candidate = 2;
2523

2624
//
@@ -65,8 +63,6 @@ message DetectedLaneBoundary
6563
// A list of candidates for this lane boundary as estimated by the
6664
// sensor.
6765
//
68-
// \note OSI uses singular instead of plural for repeated field names.
69-
//
7066
repeated CandidateLaneBoundary candidate = 2;
7167

7268
// The list of individual points defining the location of the lane boundary

osi_detectedobject.proto

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@ message DetectedItemHeader
2121

2222
// The ID of the original detected item in the ground truth.
2323
//
24-
// \note OSI uses singular instead of plural for repeated field names.
25-
//
2624
repeated Identifier ground_truth_id = 2;
2725

2826
// The estimated probability that this detected item really exists, not
@@ -63,8 +61,6 @@ message DetectedItemHeader
6361
// detections ( \c ...Detection::object_id = 'this detected item' ) and
6462
// the sensors (their IDs) to which these detections belong.
6563
//
66-
// \note OSI uses singular instead of plural for repeated field names.
67-
//
6864
repeated Identifier sensor_id = 6;
6965

7066
// Definition of measurement states.
@@ -116,8 +112,6 @@ message DetectedStationaryObject
116112
// A list of candidates for this stationary object as estimated by the
117113
// sensor.
118114
//
119-
// \note OSI uses singular instead of plural for repeated field names.
120-
//
121115
repeated CandidateStationaryObject candidate = 4;
122116

123117
// The dominating color of the material of the structure.
@@ -221,8 +215,6 @@ message DetectedMovingObject
221215
// A list of candidates for this moving object as estimated by the
222216
// sensor (e.g. pedestrian, car).
223217
//
224-
// \note OSI uses singular instead of plural for repeated field names.
225-
//
226218
repeated CandidateMovingObject candidate = 8;
227219

228220
// The dominating color of the material of the moving object.

osi_detectedoccupant.proto

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@ message DetectedOccupant
1919
// A list of candidates for this occupant as estimated by the
2020
// sensor.
2121
//
22-
// \note OSI uses singular instead of plural for repeated field names.
23-
//
2422
repeated CandidateOccupant candidate = 2;
2523

2624
//

osi_detectedroadmarking.proto

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,6 @@ message DetectedRoadMarking
5555
// A list of candidates for this road marking as estimated by the
5656
// sensor.
5757
//
58-
// \note OSI uses singular instead of plural for repeated field names.
59-
//
6058
repeated CandidateRoadMarking candidate = 4;
6159

6260
// The visual color of the material of the road marking.

osi_detectedtrafficlight.proto

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,6 @@ message DetectedTrafficLight
3939
// A list of candidates for this traffic light as estimated by the
4040
// sensor.
4141
//
42-
// \note OSI uses singular instead of plural for repeated field names.
43-
//
4442
repeated CandidateTrafficLight candidate = 4;
4543

4644
// The visual color of the traffic light.

osi_detectedtrafficsign.proto

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,6 @@ message DetectedTrafficSign
2525

2626
// A list of additional supplementary sign(s) as detected by the sensor.
2727
//
28-
// \note OSI uses singular instead of plural for repeated field names.
29-
//
3028
repeated DetectedSupplementarySign supplementary_sign = 3;
3129

3230
//

osi_featuredata.proto

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -26,20 +26,14 @@ message FeatureData
2626

2727
// Radar detections for multiple radar sensors (sensor fusion).
2828
//
29-
// \note OSI uses singular instead of plural for repeated field names.
30-
//
3129
repeated RadarDetectionData radar_sensor = 2;
3230

3331
// Lidar detections for multiple lidar sensors (sensor fusion).
3432
//
35-
// \note OSI uses singular instead of plural for repeated field names.
36-
//
3733
repeated LidarDetectionData lidar_sensor = 3;
3834

3935
// Ultrasonic detections for multiple ultrasonic sensors (sensor fusion).
4036
//
41-
// \note OSI uses singular instead of plural for repeated field names.
42-
//
4337
// \note Required for ultrasonic sensors: Detections will be send by the
4438
// emitting ultrasonic sensor, including all indirect detections received
4539
// by neighbouring sensors.
@@ -48,8 +42,6 @@ message FeatureData
4842

4943
// Camera detections for multiple camera sensors (sensor fusion).
5044
//
51-
// \note OSI uses singular instead of plural for repeated field names.
52-
//
5345
repeated CameraDetectionData camera_sensor = 5;
5446
}
5547

@@ -249,8 +241,6 @@ message RadarDetectionData
249241

250242
// List of radar detections constituting the radar detection list.
251243
//
252-
// \note OSI uses singular instead of plural for repeated field names.
253-
//
254244
repeated RadarDetection detection = 2;
255245
}
256246

@@ -358,8 +348,6 @@ message LidarDetectionData
358348

359349
// List of lidar detections.
360350
//
361-
// \note OSI uses singular instead of plural for repeated field names.
362-
//
363351
repeated LidarDetection detection = 2;
364352
}
365353

@@ -519,15 +507,11 @@ message UltrasonicDetectionData
519507

520508
// List of ultrasonic detections.
521509
//
522-
// \note OSI uses singular instead of plural for repeated field names.
523-
//
524510
repeated UltrasonicDetection detection = 2;
525511

526512
// List of ultrasonic indirect detections (sender and receiver sensors are
527513
// not the same).
528514
//
529-
// \note OSI uses singular instead of plural for repeated field names.
530-
//
531515
repeated UltrasonicIndirectDetection indirect_detection = 4;
532516
}
533517

@@ -676,14 +660,10 @@ message CameraDetectionData
676660

677661
// List of camera detections.
678662
//
679-
// \note OSI uses singular instead of plural for repeated field names.
680-
//
681663
repeated CameraDetection detection = 2;
682664

683665
// List of points which are used by detections.
684666
//
685-
// \note OSI uses singular instead of plural for repeated field names.
686-
//
687667
repeated CameraPoint point = 4;
688668
}
689669

osi_groundtruth.proto

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -73,51 +73,35 @@ message GroundTruth
7373
// The list of stationary objects (excluding traffic signs and traffic
7474
// lights).
7575
//
76-
// \note OSI uses singular instead of plural for repeated field names.
77-
//
7876
repeated StationaryObject stationary_object = 4;
7977

8078
// The list of all other moving objects including all (host) vehicles.
8179
//
82-
// \note OSI uses singular instead of plural for repeated field names.
83-
//
8480
repeated MovingObject moving_object = 5;
8581

8682
// The list of traffic signs.
8783
//
88-
// \note OSI uses singular instead of plural for repeated field names.
89-
//
9084
repeated TrafficSign traffic_sign = 6;
9185

9286
// The list of traffic lights.
9387
//
94-
// \note OSI uses singular instead of plural for repeated field names.
95-
//
9688
repeated TrafficLight traffic_light = 7;
9789

9890
// The list of road surface markings (lane markings are excluded and
9991
// defined as \c LaneBoundary).
10092
//
101-
// \note OSI uses singular instead of plural for repeated field names.
102-
//
10393
repeated RoadMarking road_marking = 8;
10494

10595
// The list of lane boundaries.
10696
//
107-
// \note OSI uses singular instead of plural for repeated field names.
108-
//
10997
repeated LaneBoundary lane_boundary = 9;
11098

11199
// The list of lanes forming a road network.
112100
//
113-
// \note OSI uses singular instead of plural for repeated field names.
114-
//
115101
repeated Lane lane = 10;
116102

117103
// The list of passengers in the (host) vehicle(s).
118104
//
119-
// \note OSI uses singular instead of plural for repeated field names.
120-
//
121105
repeated Occupant occupant = 11;
122106

123107
// Conditions of the environment.

osi_logicaldetectiondata.proto

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@ message LogicalDetectionData
2929
// Logical detections are given with respect to the reference frame of the logical/virtual sensor
3030
// \c SensorView::mounting_position (e.g. center of rear axle of the ego car)
3131
//
32-
// \note OSI uses singular instead of plural for repeated field names.
33-
//
3432
repeated LogicalDetection logical_detection = 3;
3533
}
3634

0 commit comments

Comments
 (0)