-
Notifications
You must be signed in to change notification settings - Fork 58
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
Open
knzo25
wants to merge
8
commits into
autowarefoundation:main
Choose a base branch
from
knzo25:feat/unviersal_radar_messages
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
0e14a2e
feat: implemented the proposed universal radar messages
knzo25 a4fb146
chore: spells
knzo25 bfe493f
Update autoware_sensing_msgs/msg/RadarObject.msg
knzo25 c6b4f11
Update autoware_sensing_msgs/msg/RadarObject.msg
knzo25 1fc11e5
Update autoware_sensing_msgs/msg/RadarObject.msg
knzo25 d9728d4
chore: fixed compilation
knzo25 4e2f835
chore: moved the radar msgs to perception
knzo25 25ad092
feat: deleting radar classification in favor of the existing percepti…
knzo25 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 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 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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
std_msgs/String field_name | ||
bool min_value_available | ||
bool max_value_available | ||
bool resolution_available | ||
|
||
float32 min_value | ||
float32 max_value | ||
float32 resolution |
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 |
---|---|---|
@@ -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 |
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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
float32 INVALID_COV_VALUE = -1.0 | ||
|
||
uint8 MEASUREMENT_STATUS_INVALID = 0 | ||
uint8 MEASUREMENT_STATUS_MEASURED = 1 | ||
uint8 MEASUREMENT_STATUS_PREDICTED = 2 | ||
uint8 MEASUREMENT_STATUS_NEW = 3 | ||
uint8 MEASUREMENT_STATUS_UNKNOWN = 4 | ||
|
||
uint8 MOVEMENT_STATUS_INVALID = 0 | ||
uint8 MOVEMENT_STATUS_DYNAMIC = 1 | ||
uint8 MOVEMENT_STATUS_STATIC = 2 | ||
uint8 MOVEMENT_STATUS_UNKNOWN = 3 | ||
|
||
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 size | ||
|
||
float32[6] position_covariance | ||
float32[6] velocity_covariance | ||
float32[6] acceleration_covariance | ||
float32[6] size_covariance | ||
|
||
float32 orientation | ||
float32 orientation_std | ||
float32 orientation_rate | ||
float32 orientation_rate_std | ||
|
||
float32 existence_probability | ||
ObjectClassification[] classifications |
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
std_msgs/Header header | ||
RadarObject[] objects |
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.