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 2 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
Expand Up @@ -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_PARTIALLY_MEASURED = 5;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

PARTLY_MEASURED in ISO23150?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

PARTLY_MEASURED is correct. This is a mistake on ADI side.


// Tracked object is temporarily occluded by another entity.
//
MEASUREMENT_STATE_PREDICED_OCCLUDED = 6;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Prediced or PREDICTED? Where is the differnece to state predicted above?


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

Expand Down