File tree 3 files changed +14
-0
lines changed
3 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ rosidl_generate_interfaces(${PROJECT_NAME}
13
13
"msg/PredictedObjectKinematics.msg"
14
14
"msg/PredictedObjects.msg"
15
15
"msg/PredictedPath.msg"
16
+ "msg/SegmentationMask.msg"
16
17
"msg/Shape.msg"
17
18
"msg/TrackedObject.msg"
18
19
"msg/TrackedObjectKinematics.msg"
@@ -27,6 +28,7 @@ rosidl_generate_interfaces(${PROJECT_NAME}
27
28
28
29
DEPENDENCIES
29
30
std_msgs
31
+ sensor_msgs
30
32
geometry_msgs
31
33
builtin_interfaces
32
34
unique_identifier_msgs
Original file line number Diff line number Diff line change
1
+ std_msgs/Header header
2
+
3
+ # It represent map between instance segmentation mask and labels
4
+ # The pixel intensities in mask's starts with 1 (pixel value 0 represent pixel is not belong any object)
5
+ # `classification[0]` returns the `label_id` for pixels with an intensity value of `1` in the mask.
6
+ # `classification[1]` returns the `label_id` for pixels with an intensity value of `2` in the mask.
7
+ # ...
8
+ # The relationship between pixels and label IDs continues in this way.
9
+ ObjectClassification[] classification
10
+
11
+ sensor_msgs/Image image # Mask image
Original file line number Diff line number Diff line change 14
14
<depend >builtin_interfaces</depend >
15
15
<depend >geometry_msgs</depend >
16
16
<depend >std_msgs</depend >
17
+ <depend >sensor_msgs</depend >
17
18
<depend >unique_identifier_msgs</depend >
18
19
19
20
<exec_depend >rosidl_default_runtime</exec_depend >
You can’t perform that action at this time.
0 commit comments