Skip to content

Commit 0c58e6c

Browse files
Added new elements to MeasurementState
elements: NEW, PARTIALLY_MEASURED, PREDICED_OCCLUDED Issue: OpenSimulationInterface#646 Signed-off-by: FlorianMueller87 <[email protected]>
1 parent 700133d commit 0c58e6c

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

osi_detectedobject.proto

+17
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,23 @@ message DetectedItemHeader
8484
// Values provided by tracking only.
8585
//
8686
MEASUREMENT_STATE_PREDICTED = 3;
87+
88+
// This indicates the first occurrence of this particular object in the object list.
89+
//
90+
MEASUREMENT_STATE_NEW = 4;
91+
92+
// The object was partly updated with new information
93+
// from a sensor in the last update cycle of this object
94+
// list. The measurement was incomplete and could,
95+
// therefore, only partially update the signals of this
96+
// object. The remaining signals of this object are unchanged
97+
// or predicted for this measurement cycle.
98+
//
99+
MEASUREMENT_STATE_PARTIALLY_MEASURED = 5;
100+
101+
// Tracked object is temporarily occluded by another entity.
102+
//
103+
MEASUREMENT_STATE_PREDICED_OCCLUDED = 6;
87104
}
88105
}
89106

0 commit comments

Comments
 (0)