@@ -26,6 +26,16 @@ message DetectedLane
2626 // may vary between sensor and ground truth).
2727 repeated Identifier ground_truth_id = 3 ;
2828
29+ // The amount of time that this detected object has been currently
30+ // observed/tracked.
31+ //
32+ // Unit: [s]
33+ optional double age = 1000 ;
34+
35+ // The measurement state of the detected object.
36+ //
37+ optional MeasurementState measurement_state = 1001 ;
38+
2939 // The detected lane.
3040 //
3141 optional Lane lane = 4 ;
@@ -50,20 +60,31 @@ message DetectedLaneBoundary
5060 //
5161 optional Identifier tracking_id = 2 ;
5262
53- // The ID of the original laneboundary in the ground truth.
54- // In case of a ghost laneboundary (no corresponding ground truth), this field should be unset.
63+ // The ID of the original LaneBoundary in the ground truth.
64+ //
65+ // \note In case of a ghost LaneBoundary (no corresponding ground truth),
66+ // this field should be unset.
5567 optional Identifier ground_truth_id = 3 ;
5668
57- // The basic meassured lane boundary.
58- //
59- optional LaneBoundary lane_boundary = 4 ;
69+ // The amount of time that this detected object has been currently
70+ // observed/tracked.
71+ //
72+ // Unit: [s]
73+ optional double age = 1000 ;
6074
6175 // State of the measurement. Lane boundary measured in the current image or Lane boundary predicted (no measurement in current image).
6276 //
6377 optional MeasurementState measurement_state = 5 ;
6478
65- // Probability of the detection that the lane exists.
79+ // The basic measured lane boundary.
80+ //
81+ optional LaneBoundary lane_boundary = 4 ;
82+
83+ // The estimated probability that this lane boundary really exists, not
84+ // based on history.
6685 //
86+ // \note Use as confidence measure where a low value means less confidence
87+ // and a high value indicates strong confidence.
6788 optional double existence_probability = 6 ;
6889
6990 // Confidence of the classified lane boundary type.
@@ -76,9 +97,9 @@ message DetectedLaneBoundary
7697
7798 // The root mean squared error of the BoundaryPoint information from a LaneBoundary.
7899 // For every \c lane_boundary.boundary_line point exact one \c boundary_line_rmse rmse information exist.
79- repeated BoundaryPoint boundary_line_rmse = 9 ;
100+ repeated BoundaryPoint boundary_line_point_rmse = 9 ;
80101
81102 // Confidence of the segments of the BoundaryPoint information from a LaneBoundary.
82103 // For every \c lane_boundary.boundary_line point exact one \c boundary_line_confidence confidence value is specified.
83- repeated double boundary_line_confidence = 10 ;
104+ repeated double boundary_line_point_confidences = 10 ;
84105}
0 commit comments