-
Notifications
You must be signed in to change notification settings - Fork 668
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
fix(object_association_merger_node): fix the frame id of output object msg #8674
fix(object_association_merger_node): fix the frame id of output object msg #8674
Conversation
Signed-off-by: vividf <yihsiang.fang@tier4.jp>
Thank you for contributing to the Autoware project! 🚧 If your pull request is in progress, switch it to draft mode. Please ensure:
|
Thank you very much for your fix, but I think there are some problem with this PR. I don't think this bug should be fixed in this way. In theory, the frame_id of the two input topic of node What do you think? |
@cyn-liu Since this node assigns the header of the @technolojin @YoshiRi @yukkysaito What do you think, thanks! |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #8674 +/- ##
==========================================
- Coverage 24.12% 24.12% -0.01%
==========================================
Files 1400 1400
Lines 102282 102295 +13
Branches 38782 38785 +3
==========================================
Hits 24675 24675
- Misses 75124 75137 +13
Partials 2483 2483
*This pull request uses carry forward flags. Click here to find out more. ☔ View full report in Codecov by Sentry. |
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.
I think it was a bug, and will be fixed by this PR.
LGTM
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.
LGTM
@vividf Thanks for your fix this bug. By the way, I want ask a question: What is the mean of parameter |
…t msg (autowarefoundation#8674) fix: fix the object msg header Signed-off-by: vividf <yihsiang.fang@tier4.jp>
…t msg (autowarefoundation#8674) fix: fix the object msg header Signed-off-by: vividf <yihsiang.fang@tier4.jp>
Description
This PR solves the issue #8530.
If the frame id of
output_msg
is notbase_link
, the merged object will have the wrong coordinate.This issue happens because all of the objects (0 and 1) are transformed to base_link, but the frame of
output_msg
is frominput_objects0_msg->header
Before fixed:
After fixed:
Related links
Parent Issue:
How was this PR tested?
Notes for reviewers
None.
Interface changes
None.
Effects on system behavior
None.