-
Notifications
You must be signed in to change notification settings - Fork 57
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
feat(autoware_perception_msgs): implement the proposed universal radar messages #120
base: main
Are you sure you want to change the base?
Changes from 2 commits
0e14a2e
a4fb146
bfe493f
c6b4f11
1fc11e5
d9728d4
4e2f835
25ad092
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Common classes with autoware_perception_msgs/msg/ObjectClassification.msg | ||
uint32 UNKNOWN = 0 | ||
uint32 CAR = 1 | ||
uint32 TRUCK = 2 | ||
uint32 BUS = 3 | ||
uint32 TRAILER = 4 | ||
uint32 MOTORCYCLE = 5 | ||
uint32 BICYCLE = 6 | ||
uint32 PEDESTRIAN = 7 | ||
|
||
# Radar specific classes | ||
uint32 ANIMAL = 8 | ||
uint32 HAZARD = 9 | ||
uint32 OVER_DRIVABLE = 10 | ||
uint32 UNDER_DRIVABLE = 11 | ||
xmfcx marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
uint32 label | ||
float32 probability |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
std_msgs/String field_name | ||
bool min_value_available | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For the availability bools, I remember there was a discussion about using NaN (I guess the above suggestion by @xmfcx , using There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Another way of doing this would be to use a field like |
||
bool max_value_available | ||
bool resolution_available | ||
|
||
float32 min_value | ||
float32 max_value | ||
float32 resolution |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
std_msgs/Header header | ||
RadarFieldInfo[] object_fields_info | ||
RadarFieldInfo[] detection_fields_info | ||
|
||
uint32[] available_classes | ||
bool absolute_dynamics # absolute or relative dynamics |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
float32 INVALID_COV_VALUE = 100000000.0 | ||
knzo25 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
uint8 MEASUREMENT_STATUS_MEASURED = 0 | ||
uint8 MEASUREMENT_STATUS_PREDICTED = 1 | ||
uint8 MEASUREMENT_STATUS_NEW = 2 | ||
uint8 MEASUREMENT_STATUS_UNKNOWN = 3 | ||
uint8 MEASUREMENT_STATUS_INVALID = 255 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not sure if these values are chosen for backward compatibility, but e.g. Protobuf recommends to make There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Addressed in d9728d4 |
||
|
||
uint8 MOVEMENT_STATUS_DYNAMIC = 0 | ||
uint8 MOVEMENT_STATUS_STATIC = 1 | ||
uint8 MOVEMENT_STATUS_UNKNOWN = 2 | ||
uint8 MOVEMENT_STATUS_INVALID = 255 | ||
|
||
uint32 object_id | ||
uint16 age | ||
uint8 measurement_status | ||
uint8 movement_status | ||
|
||
geometry_msgs/Point position | ||
geometry_msgs/Vector3 velocity | ||
geometry_msgs/Vector3 acceleration | ||
geometry_msgs/Vector3 shape | ||
knzo25 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
float32[6] position_cov | ||
float32[6] velocity_cov | ||
float32[6] acceleration_cov | ||
float32[6] shape_cov | ||
knzo25 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
float32 orientation | ||
float32 orientation_std | ||
float32 orientation_rate | ||
float32 orientation_rate_std | ||
|
||
float32 existence_probability | ||
RadarClassification[] classifications |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
std_msgs/Header header | ||
RadarObject[] objects |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you put the parenthesis back up? To keep consistent.