Skip to content

Commit

Permalink
Small build fixes (ros-perception#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
mintar authored and Adam Allevato committed May 30, 2017
1 parent dc7e28c commit 0e84b54
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 14 deletions.
17 changes: 8 additions & 9 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -49,18 +49,17 @@ find_package(catkin REQUIRED COMPONENTS
# Generate messages in the 'msg' folder
add_message_files(
FILES
ObjectHypothesis.msg
ObjectHypothesisWithPose.msg
ClassifierInfo.msg
BoundingBox2D.msg
BoundingBox3D.msg
Classification2D.msg
Classification3D.msg
Detection2D.msg
Detection2DArray.msg
Detection3D.msg
Detection2D.msg
Detection3DArray.msg

BoundingBox2D.msg
BoundingBox3D.msg
Detection3D.msg
ObjectHypothesis.msg
ObjectHypothesisWithPose.msg
VisionInfo.msg
)

## Generate services in the 'srv' folder
Expand Down Expand Up @@ -117,7 +116,7 @@ generate_messages(
catkin_package(
# INCLUDE_DIRS include
# LIBRARIES vision_msgs
CATKIN_DEPENDS std_msgs sensor_msgs geometry_msgs
CATKIN_DEPENDS std_msgs sensor_msgs geometry_msgs message_runtime
# DEPENDS system_lib
)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ classifier information.

* Classification2D and Classification3D: pure classification without pose
* Detection2D and Detection3D: classification + pose
* ClassifierInfo: Information about a classifier, such as its name and where
* VisionInfo: Information about a classifier, such as its name and where
to find its metadata database.

By using a very general message definition, we hope to cover as many of the
Expand Down
2 changes: 1 addition & 1 deletion msg/Detection2D.msg
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
Header header

# Class probabilities
vision_msgs/ObjectHypothesisWithPose[] results
ObjectHypothesisWithPose[] results

# 2D bounding box surrounding the object.
BoundingBox2D bbox
Expand Down
2 changes: 1 addition & 1 deletion msg/Detection2DArray.msg
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

# list of the detected proposals. For a multi-proposal detector, this list could
# have many objects.
vision_msgs/Detection2D[] detections
Detection2D[] detections
2 changes: 1 addition & 1 deletion msg/Detection3D.msg
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Header header

# Class probabilities. Does not have to include hypotheses for all possible
# object ids, the scores for any ids not listed are assumed to be 0.
vision_msgs/ObjectHypothesisWithPose[] results
ObjectHypothesisWithPose[] results

# 3D bounding box surrounding the object.
BoundingBox3D bbox
Expand Down
2 changes: 1 addition & 1 deletion msg/Detection3DArray.msg
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

# list of the detected proposals. For a multi-proposal detector, this list could
# have many objects.
vision_msgs/Detection3D[] detections
Detection3D[] detections

0 comments on commit 0e84b54

Please sign in to comment.