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.
Flattened message structure and made use of CategoryDistribution
- Loading branch information
Showing
7 changed files
with
27 additions
and
38 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
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
This file was deleted.
Oops, something went wrong.
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
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
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 |
---|---|---|
@@ -1,16 +1,18 @@ | ||
# Defines a 2D detection result. | ||
# Defines a 3D detection result. | ||
# | ||
# This extends a basic 2D classification by including position information, | ||
# This extends a basic 3D classification by including position information, | ||
# allowing a classification result for a specific position in an image to | ||
# to be located in the larger image. | ||
|
||
# non-geometric results of detection. | ||
vision_msgs/Classification2D classification | ||
Header header | ||
|
||
# Class probabilities | ||
CategoryDistribution results | ||
|
||
# The x/y position and (optional) rotation of the bounding box center. | ||
geometry_msgs/Pose2D pose | ||
|
||
# (Optional) The size of the bounding box surrounding the object. The center of | ||
# the bounding box is the position of the detection point. | ||
# the bounding box is the position of the pose. | ||
float32 bbox_size_x | ||
float32 bbox_size_y |
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