Skip to content

Commit 50b0332

Browse files
authored
Merge pull request #702 from OpenSimulationInterface/feature/sm/rcs-non-moving-detected-objects
Add sensor-specific data to detected stationary objects
2 parents 7feecaf + 1066206 commit 50b0332

File tree

2 files changed

+29
-1
lines changed

2 files changed

+29
-1
lines changed

osi_detectedobject.proto

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,34 @@ message DetectedStationaryObject
118118
//
119119
optional ColorDescription color_description = 5;
120120

121+
// Additional data that is specific to radar sensors.
122+
//
123+
// \note Field needs not to be set if simulated sensor is not a radar
124+
// sensor.
125+
//
126+
optional RadarSpecificObjectData radar_specifics = 100;
127+
128+
// Additional data that is specific to lidar sensors.
129+
//
130+
// \note Field needs not to be set if simulated sensor is not a lidar
131+
// sensor.
132+
//
133+
optional LidarSpecificObjectData lidar_specifics = 101;
134+
135+
// Additional data that is specific to camera sensors.
136+
//
137+
// \note Field needs not to be set if simulated sensor is not a camera
138+
// sensor.
139+
//
140+
optional CameraSpecificObjectData camera_specifics = 102;
141+
142+
// Additional data that is specific to ultrasonic sensors.
143+
//
144+
// \note Field needs not to be set if simulated sensor is not an ultrasonic
145+
// sensor.
146+
//
147+
optional UltrasonicSpecificObjectData ultrasonic_specifics = 103;
148+
121149
//
122150
// \brief A candidate for a detected stationary object as estimated
123151
// by the sensor.

osi_sensorspecific.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ message UltrasonicSpecificObjectData
5656
//
5757
optional double maximum_measurement_distance_sensor = 1;
5858

59-
// This value indicates the propability height for the classification in the
59+
// This value indicates the probability height for the classification in the
6060
// calculated object.
6161
//
6262
// Unit: %

0 commit comments

Comments
 (0)