Skip to content

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

Open
wants to merge 6 commits into
base: main
Choose a base branch
from

Conversation

knzo25
Copy link
Contributor

@knzo25 knzo25 commented Apr 25, 2025

Description

As per the title

Related links

Parent Issue:

  • Link

How was this PR tested?

Notes for reviewers

None.

Interface changes

None.

Effects on system behavior

None.

@github-actions github-actions bot added the component:sensing Data acquisition from sensors, drivers, preprocessing. (auto-assigned) label Apr 25, 2025
Copy link

github-actions bot commented Apr 25, 2025

Thank you for contributing to the Autoware project!

🚧 If your pull request is in progress, switch it to draft mode.

Please ensure:

@knzo25 knzo25 requested review from YoshiRi and technolojin April 25, 2025 06:44
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());
Copy link
Contributor

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?

Suggested change
"~/output/detections", rclcpp::SensorDataQoS());
"~/output/detections", 10);

Copy link
Contributor

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());
Copy link
Contributor

Choose a reason for hiding this comment

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

same comment with above.

Suggested change
"~/output/tracks", rclcpp::SensorDataQoS());
"~/output/tracks", 10);

Copy link
Contributor

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(
Copy link
Contributor

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.

Copy link
Contributor

Choose a reason for hiding this comment

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

refactored 6f55488

@technolojin technolojin self-assigned this Apr 30, 2025
@technolojin technolojin added the run:build-and-test-differential Mark to enable build-and-test-differential workflow. (used-by-ci) label Apr 30, 2025
Copy link

codecov bot commented Apr 30, 2025

Codecov Report

Attention: Patch coverage is 0% with 109 lines in your changes missing coverage. Please review.

Project coverage is 24.96%. Comparing base (e8ad7ba) to head (b0e7577).

Files with missing lines Patch % Lines
...adar_objects_adapter/src/radar_objects_adapter.cpp 0.00% 109 Missing ⚠️
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              
Flag Coverage Δ *Carryforward flag
differential 0.00% <0.00%> (?)
differential-cuda 0.00% <0.00%> (?)
total 24.99% <ø> (+0.01%) ⬆️ Carriedforward from e8ad7ba

*This pull request uses carry forward flags. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@technolojin technolojin force-pushed the feat/radar_to_tracks branch from cdf1599 to 874922b Compare May 2, 2025 03:47
@github-actions github-actions bot added component:perception Advanced sensor data processing and environment understanding. (auto-assigned) component:launch Launch files, scripts and initialization tools. (auto-assigned) labels May 2, 2025
@technolojin technolojin force-pushed the feat/radar_to_tracks branch from 874922b to 2870eb6 Compare May 2, 2025 03:49
@github-actions github-actions bot removed component:perception Advanced sensor data processing and environment understanding. (auto-assigned) component:launch Launch files, scripts and initialization tools. (auto-assigned) labels May 2, 2025
@technolojin technolojin requested a review from YoshiRi May 2, 2025 04:09
knzo25 and others added 6 commits May 2, 2025 13:14
Signed-off-by: Kenzo Lobos-Tsunekawa <[email protected]>
refactor: simplify function signatures in radar_objects_adapter
Signed-off-by: Taekjin LEE <[email protected]>
@technolojin technolojin force-pushed the feat/radar_to_tracks branch from fe69c73 to b0e7577 Compare May 2, 2025 04:14
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
component:sensing Data acquisition from sensors, drivers, preprocessing. (auto-assigned) run:build-and-test-differential Mark to enable build-and-test-differential workflow. (used-by-ci)
Projects
Status: To Triage
Development

Successfully merging this pull request may close these issues.

3 participants