-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: replace classification array
Signed-off-by: Barış Zeren <[email protected]>
- Loading branch information
1 parent
30f974f
commit 8a35861
Showing
3 changed files
with
7 additions
and
9 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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,11 @@ | ||
std_msgs/Header header | ||
|
||
SegmentationConfig config # Stores relation between class and image intensity | ||
# It represent map between instance segmentation mask and labels | ||
# The pixel intensities in mask's starts with 1 (pixel value 0 represent pixel is not belong any object) | ||
# `classification[0]` returns the `label_id` for pixels with an intensity value of `1` in the mask. | ||
# `classification[1]` returns the `label_id` for pixels with an intensity value of `2` in the mask. | ||
# ... | ||
# The relationship between pixels and label IDs continues in this way. | ||
autoware_perception_msgs/ObjectClassification[] classification | ||
|
||
sensor_msgs/Image image # Mask image |