Skip to content

Commit 87aa598

Browse files
authored
Merge pull request #54 from AutoModality/AM-696/darknet-msgs
feat: darknet_ros action is added
2 parents 04bd65f + 2c94243 commit 87aa598

File tree

4 files changed

+19
-5
lines changed

4 files changed

+19
-5
lines changed

brain_box_msgs/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,7 @@ add_service_files(
187187
add_action_files(
188188
DIRECTORY action
189189
FILES
190+
CheckForObjects.action
190191
GlobalPositionNavigation.action
191192
LocalPositionNavigation.action
192193
WaypointNavigation.action
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Check if objects in image
2+
3+
# Goal definition
4+
int16 id
5+
sensor_msgs/Image image
6+
7+
---
8+
# Result definition
9+
int16 id
10+
brain_box_msgs/BoundingBoxes bounding_boxes
11+
12+
---
13+
# Feedback definition

brain_box_msgs/msg/BoundingBox.msg

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1-
string feature_name
1+
string Class
2+
string camera
3+
int64 img_width
4+
int64 img_height
25
float64 probability
36
int64 xmin
47
int64 ymin
58
int64 xmax
69
int64 ymax
7-
Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
Header header
2-
string camera
3-
int64 img_width
4-
int64 img_height
2+
Header image_header
53
BoundingBox[] bounding_boxes

0 commit comments

Comments
 (0)