-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathSegment.msg
30 lines (22 loc) · 955 Bytes
/
Segment.msg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Message for sorted segment of points.
# Each segment is assigned an id, which uniquely identifies the segment consistently across multiple frames.
# The segments can be linked to previous and next segment using lastPointPriorSeg and firstPointNextSeg, respectively.
# Segment messages can be used as an input to a classifier such as a person detector, or for annotating
# sensor_msgs/Laserscan messages with groundtruth person tracks.
# ID of the segment
uint64 id 0
# Label of the segment
uint32 label 0
# Angular distance to the closest boundary (in rads)
float64 angular_distance 0.0
# Last point of the previous segment
geometry_msgs/Point last_point_prior_segment
# First point of the next segment
geometry_msgs/Point first_point_next_segment
# Points of the segment
geometry_msgs/Point[] points
# Type of the labels
uint32 BACKGROUND = 0
uint32 PERSON = 1
uint32 PERSON_CANE = 2
uint32 PERSON_WHEEL_CHAIR = 3