-
Notifications
You must be signed in to change notification settings - Fork 682
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(image_projection_based_fusion): fix out-of-scope error #4057
fix(image_projection_based_fusion): fix out-of-scope error #4057
Conversation
56e9f34
to
026ac95
Compare
Signed-off-by: yukke42 <yukke42@users.noreply.github.com>
WalkthroughThe changes include modifications to the Changes
|
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.
Files selected (2)
- perception/image_projection_based_fusion/include/image_projection_based_fusion/roi_detected_object_fusion/node.hpp (2)
- perception/image_projection_based_fusion/src/roi_detected_object_fusion/node.cpp (9)
Files not summarized due to errors (1)
- perception/image_projection_based_fusion/src/roi_detected_object_fusion/node.cpp (diff tokens exceeds limit)
Review comments generated (6)
- Review: 3
- LGTM: 3
Tips
Chat with
CodeRabbit Bot (@coderabbitai
)
- Reply on review comments left by this bot to ask follow-up questions. A review comment is a comment on a diff or a file.
- Invite the bot into a review comment chain by tagging
@coderabbitai
in a reply.
Code suggestions
- The bot may make code suggestions, but please review them carefully before committing since the line number ranges may be misaligned.
- You can edit the comment made by the bot and manually tweak the suggestion if it is slightly off.
Pausing incremental reviews
- Add
@coderabbitai: ignore
anywhere in the PR description to pause further reviews from the bot.
perception/image_projection_based_fusion/src/roi_detected_object_fusion/node.cpp
Show resolved
Hide resolved
perception/image_projection_based_fusion/src/roi_detected_object_fusion/node.cpp
Show resolved
Hide resolved
perception/image_projection_based_fusion/src/roi_detected_object_fusion/node.cpp
Show resolved
Hide resolved
Codecov ReportPatch coverage:
Additional details and impacted files@@ Coverage Diff @@
## main #4057 +/- ##
==========================================
- Coverage 14.80% 14.30% -0.51%
==========================================
Files 1527 1557 +30
Lines 105643 106941 +1298
Branches 32096 30758 -1338
==========================================
- Hits 15642 15293 -349
- Misses 72925 75085 +2160
+ Partials 17076 16563 -513
*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.
LGTM
…oundation#4057) * tmp Signed-off-by: yukke42 <yukke42@users.noreply.github.com> style(pre-commit): autofix update Signed-off-by: yukke42 <yukke42@users.noreply.github.com> style(pre-commit): autofix * fix: fix association bug Signed-off-by: yukke42 <yukke42@users.noreply.github.com> --------- Signed-off-by: yukke42 <yukke42@users.noreply.github.com> Co-authored-by: Shunsuke Miura <37187849+miursh@users.noreply.github.com>
…oundation#4057) * tmp Signed-off-by: yukke42 <yukke42@users.noreply.github.com> style(pre-commit): autofix update Signed-off-by: yukke42 <yukke42@users.noreply.github.com> style(pre-commit): autofix * fix: fix association bug Signed-off-by: yukke42 <yukke42@users.noreply.github.com> --------- Signed-off-by: yukke42 <yukke42@users.noreply.github.com> Co-authored-by: Shunsuke Miura <37187849+miursh@users.noreply.github.com>
…oundation#4057) * tmp Signed-off-by: yukke42 <yukke42@users.noreply.github.com> style(pre-commit): autofix update Signed-off-by: yukke42 <yukke42@users.noreply.github.com> style(pre-commit): autofix * fix: fix association bug Signed-off-by: yukke42 <yukke42@users.noreply.github.com> --------- Signed-off-by: yukke42 <yukke42@users.noreply.github.com> Co-authored-by: Shunsuke Miura <37187849+miursh@users.noreply.github.com>
Description
fix a bug by the update of sync alrogithm of this package
Related links
Tests performed
I have checked with some rosbag that there are no errors.
blue bounding boxes are output objects.
yellow bounding boxes are filtered out objects.
Notes for reviewers
Interface changes
Effects on system behavior
Pre-review checklist for the PR author
The PR author must check the checkboxes below when creating the PR.
In-review checklist for the PR reviewers
The PR reviewers must check the checkboxes below before approval.
Post-review checklist for the PR author
The PR author must check the checkboxes below before merging.
After all checkboxes are checked, anyone who has write access can merge the PR.
Summary by CodeRabbit
Release Notes:
RoiDetectedObjectFusionNode
class in thenode.hpp
file has been modified. ThegenerateDetectedObjectRoIs
andfuseObjectsOnImage
functions now accept aDetectedObjects
message as input instead of a vector ofDetectedObject
objects. The member variablespassthrough_object_flags_
,fused_object_flags_
, andignored_object_flags_
have been changed to maps (passthrough_object_flags_map_
,fused_object_flags_map_
, andignored_object_flags_map_
) withint64_t
keys.