forked from ros-perception/vision_msgs
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Defines a 3D classification result. | ||
# | ||
# This result does not contain any position information. It is designed for | ||
# classifiers, which simply provide probabilities given a source image. | ||
|
||
Header header | ||
|
||
# IDs of elements detected with any nonzero probability. | ||
# Does not have to include all possible object | ||
# ids, the scores for any ids not listed are assumed to be 0. | ||
int64[] ids | ||
|
||
# The probabilities or confidence values of the detected elements. Must be | ||
# sorted to correspond with the ids field, above | ||
# 0-1, should sum to 1 or less, must be the same length as ids | ||
float64[] scores | ||
|
||
# The 2D data that generated these results (i.e. region proposal cropped out of | ||
# the image). Not required for all detectors, so it may be empty. | ||
sensor_msgs/PointCloud2 source |