-
Notifications
You must be signed in to change notification settings - Fork 722
feat(autoware_radar_objects_adapter): add publisher for tracks with uuid #10556
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
base: main
Are you sure you want to change the base?
Conversation
Thank you for contributing to the Autoware project! 🚧 If your pull request is in progress, switch it to draft mode. Please ensure:
|
pub_ = create_publisher<autoware_perception_msgs::msg::DetectedObjects>( | ||
"~/output/objects", rclcpp::SensorDataQoS()); | ||
detections_pub_ = create_publisher<autoware_perception_msgs::msg::DetectedObjects>( | ||
"~/output/detections", rclcpp::SensorDataQoS()); |
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.
Many subscriber do receive DetectedObjects
and TrackedObjects
with Reliable
policy. Would you mind quit sensor qos policy so that it will be easier to handle these information?
"~/output/detections", rclcpp::SensorDataQoS()); | |
"~/output/detections", 10); |
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.
fixed 2870eb6
"~/output/detections", rclcpp::SensorDataQoS()); | ||
|
||
tracks_pub_ = create_publisher<autoware_perception_msgs::msg::TrackedObjects>( | ||
"~/output/tracks", rclcpp::SensorDataQoS()); |
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.
same comment with above.
"~/output/tracks", rclcpp::SensorDataQoS()); | |
"~/output/tracks", 10); |
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.
fixed 2870eb6
detections_pub_->publish(std::move(output_msg_ptr)); | ||
} | ||
|
||
void RadarObjectsAdapter::parse_as_tracks( |
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.
[just a comment]
kinematics and class calculation can be shared with detection conversion. But I do not push it for now.
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.
refactored 6f55488
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #10556 +/- ##
==========================================
- Coverage 24.97% 24.96% -0.02%
==========================================
Files 1351 1351
Lines 105139 105197 +58
Branches 39766 39771 +5
==========================================
Hits 26262 26262
- Misses 76385 76443 +58
Partials 2492 2492
*This pull request uses carry forward flags. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
cdf1599
to
874922b
Compare
874922b
to
2870eb6
Compare
Signed-off-by: Kenzo Lobos-Tsunekawa <[email protected]>
Signed-off-by: Kenzo Lobos-Tsunekawa <[email protected]>
Signed-off-by: Kenzo Lobos-Tsunekawa <[email protected]>
…racks publishers Signed-off-by: Taekjin LEE <[email protected]>
refactor: simplify function signatures in radar_objects_adapter Signed-off-by: Taekjin LEE <[email protected]>
Signed-off-by: Taekjin LEE <[email protected]>
fe69c73
to
b0e7577
Compare
Description
As per the title
Related links
Parent Issue:
How was this PR tested?
Notes for reviewers
None.
Interface changes
None.
Effects on system behavior
None.