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

Rename tracking_id -> id, id -> class_id #52

Merged
merged 2 commits into from
Jan 7, 2021
Merged
Show file tree
Hide file tree
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
7 changes: 4 additions & 3 deletions msg/Detection2D.msg
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ BoundingBox2D bbox
# the image). Not required for all use cases, so it may be empty.
sensor_msgs/Image source_img

# ID used for consistency across multiple detection messages. This value will
# likely differ from the id field set in each individual ObjectHypothesis.
string tracking_id
# ID used for consistency across multiple detection messages. Detections
# of the same object in different detection messages should have the same id.
# This field may be empty.
string id
7 changes: 4 additions & 3 deletions msg/Detection3D.msg
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ BoundingBox3D bbox
# be empty.
sensor_msgs/PointCloud2 source_cloud

# ID used for consistency across multiple detection messages. This value will
# likely differ from the id field set in each individual ObjectHypothesis.
string tracking_id
# ID used for consistency across multiple detection messages. Detections
# of the same object in different detection messages should have the same id.
# This field may be empty.
string id
2 changes: 1 addition & 1 deletion msg/ObjectHypothesis.msg
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# The unique ID of the object class. To get additional information about
# this ID, such as its human-readable class name, listeners should perform a
# lookup in a metadata database. See vision_msgs/VisionInfo.msg for more detail.
string id
string class_id

# The probability or confidence value of the detected object. By convention,
# this value should lie in the range [0-1].
Expand Down