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 RadarDetection #2

Closed
wants to merge 4 commits into from
Closed
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
11 changes: 11 additions & 0 deletions msg/RadarDetection.msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# 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.

# Radar detections are the discrete clusterings of points
# Detections which are filtered into moving objects are referred to as Tracks
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could this description be copied to #3, too?


# 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 size # The RCS or average deviation (m) in the x, y, z, dimensions
SteveMacenski marked this conversation as resolved.
Show resolved Hide resolved
# between the center of the object and the data points which it is derived from.
3 changes: 3 additions & 0 deletions msg/RadarDetections.msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
std_msgs/Header header

radar_msgs/RadarDetection[] detections