@@ -53,6 +53,16 @@ message DetectedTrafficSign
5353 // Links to the corresponding lanes.
5454 //
5555 repeated RelevantLane relevant_lane = 10 ;
56+
57+ // A list of sensors which detected this detected entity.
58+ //
59+ // If SensorData has detected entities and all detections are missing, then
60+ // e.g. the number of sensors can confirm the existence_probability.
61+ //
62+ // \note This information can be determined via the detected entities'
63+ // detections ( \c ...Detection::object_id = 'this detected entity' ) and
64+ // the sensors (their IDs) to which these detections belong.
65+ repeated Identifier sensor_id = 11 ;
5666
5767 // Definition of traffic sign geometries.
5868 //
@@ -191,9 +201,20 @@ message DetectedTrafficLight
191201 // The measurement state.
192202 //
193203 optional MeasurementState measurement_state = 8 ;
204+
194205 // The root mean squared error of the base parameters of the detected traffic light.
195206 //
196207 optional BaseStationary rmse = 9 ;
208+
209+ // A list of sensors which detected this detected entity.
210+ //
211+ // If SensorData has detected entities and all detections are missing, then
212+ // e.g. the number of sensors can confirm the existence_probability.
213+ //
214+ // \note This information can be determined via the detected entities'
215+ // detections ( \c ...Detection::object_id = 'this detected entity' ) and
216+ // the sensors (their IDs) to which these detections belong.
217+ repeated Identifier sensor_id = 10 ;
197218
198219 //
199220 // \brief Further specifies the relevant directions of the traffic light.
@@ -279,9 +300,20 @@ message DetectedRoadMarking
279300 // The measurement state.
280301 //
281302 optional MeasurementState measurement_state = 7 ;
303+
282304 // The root mean squared error of the base parameters of the detected road marking.
283305 //
284306 optional BaseStationary rmse = 8 ;
307+
308+ // A list of sensors which detected this detected entity.
309+ //
310+ // If SensorData has detected entities and all detections are missing, then
311+ // e.g. the number of sensors can confirm the existence_probability.
312+ //
313+ // \note This information can be determined via the detected entities'
314+ // detections ( \c ...Detection::object_id = 'this detected entity' ) and
315+ // the sensors (their IDs) to which these detections belong.
316+ repeated Identifier sensor_id = 11 ;
285317}
286318
287319//
0 commit comments