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.
unifying 2D and 3D messages (ros-perception#2)
* unified ObjectHypothesis 2D and 3D in ObjectHypothesisWithPose * better description and attempt in normalizing fields also changed datatype to uint32 as we are in the pixel space for 2D BB * changed DetectionXD.msg to use generic ObjectHypothesisWithPose
- Loading branch information
1 parent
d84e07d
commit 1929d27
Showing
7 changed files
with
14 additions
and
27 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
# Note: This message plans to move to geometry_msgs in the final implementation. | ||
|
||
# The x/y position and (optional) rotation of the bounding box center. | ||
geometry_msgs/Pose2D pose | ||
# The 2D position (in pixels) and orientation of the bounding box origin. | ||
geometry_msgs/Pose2D origin | ||
|
||
# (Optional) The size of the bounding box surrounding the object. The center of | ||
# the bounding box is the position of the pose. | ||
float32 bbox_size_x | ||
float32 bbox_size_y | ||
# The size (in pixels) of the bounding box surrounding the object relative | ||
# to the pose of its origin | ||
uint32 size_x | ||
uint32 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
# Note: This message plans to move to geometry_msgs in the final implementation. | ||
|
||
# position and rotation of the bounding box | ||
geometry_msgs/Pose pose | ||
# The 3D position and orientation of the bounding box origin | ||
geometry_msgs/Pose origin | ||
|
||
# size of the bounding box | ||
geometry_msgs/Vector3 size | ||
# The size of the bounding box surrounding the object relative to the pose of | ||
# its origin | ||
geometry_msgs/Vector3 size |
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.
File renamed without changes.