Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Message format for RadarTrack #3

Merged
merged 16 commits into from Jan 19, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions msg/RadarTrack.msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# All variables below are relative to the radar's frame of reference.
# This message is not meant to be used alone but as part of a stamped or array message.

uint16 track_id # The track ID of the object generated by the radar.
This conversation was marked as resolved.
Show resolved Hide resolved

# NB: The z component of these fields is ignored for 2D tracking.
geometry_msgs/Point position # x, y, z coordinates of the centroid of the object being tracked.
geometry_msgs/Vector3 velocity # The velocity of the object in each spacial dimension.
SteveMacenski marked this conversation as resolved.
Show resolved Hide resolved
geometry_msgs/Vector3 acceleration # The acceleration of the object in each spacial dimension.
This conversation was marked as resolved.
Show resolved Hide resolved
SteveMacenski marked this conversation as resolved.
Show resolved Hide resolved
geometry_msgs/Vector3 size # The average deviation (m) in the x, y, z, dimensions
# between the center of the object and the data points which it is derived from.
string classification # An optional classification of the object (eg. Person, Car).
This conversation was marked as resolved.
Show resolved Hide resolved
3 changes: 3 additions & 0 deletions msg/RadarTracks.msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
std_msgs/Header header

radar_msgs/RadarTracks[] tracks