Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft for discussion: Feature/add elements to measurement state #660

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions osi_detectedobject.proto
Original file line number Diff line number Diff line change
@@ -84,6 +84,27 @@ message DetectedItemHeader
// Values provided by tracking only.
//
MEASUREMENT_STATE_PREDICTED = 3;

// This indicates the first occurrence of this particular object in the object list.
//
MEASUREMENT_STATE_NEW = 4;

// The object was partly updated with new information
// from a sensor in the last update cycle of this object
// list. The measurement was incomplete and could,
// therefore, only partially update the signals of this
// object. The remaining signals of this object are unchanged
// or predicted for this measurement cycle.
//
MEASUREMENT_STATE_PARTLY_MEASURED = 5;

// Tracked object is temporarily occluded by another entity.
//
MEASUREMENT_STATE_PREDICTED_OCCLUDED = 6;

// The object is invalid in this cycle.
//
MEASUREMENT_STATE_INVALID = 7;
}
}