-
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
feat(image_projection_based_fusion): update pointpainting #4544
Conversation
Signed-off-by: yukke42 <yukke42@users.noreply.github.com>
Signed-off-by: yukke42 <yukke42@users.noreply.github.com>
Signed-off-by: yukke42 <yukke42@users.noreply.github.com>
WalkthroughThe overall change includes 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 (4)
- perception/image_projection_based_fusion/launch/pointpainting_fusion.launch.xml (1)
- perception/image_projection_based_fusion/src/pointpainting_fusion/node.cpp (5)
- perception/image_projection_based_fusion/src/pointpainting_fusion/preprocess_kernel.cu (1)
- perception/image_projection_based_fusion/src/utils/utils.cpp (1)
Files skipped from review due to trivial changes (1)
- perception/image_projection_based_fusion/launch/pointpainting_fusion.launch.xml
Review comments generated (4)
- Review: 2
- LGTM: 2
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/pointpainting_fusion/node.cpp
Show resolved
Hide resolved
perception/image_projection_based_fusion/src/pointpainting_fusion/node.cpp
Show resolved
Hide resolved
Signed-off-by: yukke42 <yusuke.muramatsu@tier4.jp>
Signed-off-by: yukke42 <yusuke.muramatsu@tier4.jp>
a8019dc
to
d5da1a9
Compare
Signed-off-by: yukke42 <yukke42@users.noreply.github.com>
a5c7c35
to
a5608b1
Compare
Codecov ReportPatch coverage has no change and project coverage change:
Additional details and impacted files@@ Coverage Diff @@
## main #4544 +/- ##
==========================================
- Coverage 14.91% 14.86% -0.06%
==========================================
Files 1516 1521 +5
Lines 104652 105036 +384
Branches 31853 31853
==========================================
Hits 15610 15610
- Misses 72007 72391 +384
Partials 17035 17035
*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
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
@yukke42 Could you also update the param in https://github.com/autowarefoundation/autoware_launch/tree/main/autoware_launch/config/perception/object_recognition/detection/lidar_model
@miursh Cloud you check autowarefoundation/autoware_launch#506? |
…undation#4544) * refactor: update point-image projection Signed-off-by: yukke42 <yukke42@users.noreply.github.com> * feat: add class_mappings for paint points Signed-off-by: yukke42 <yukke42@users.noreply.github.com> * chore: change score_threshold Signed-off-by: yukke42 <yukke42@users.noreply.github.com> * style(pre-commit): autofix * feat: update pointpainting model Signed-off-by: yukke42 <yusuke.muramatsu@tier4.jp> * chore: remove comment out Signed-off-by: yukke42 <yusuke.muramatsu@tier4.jp> * chore: fix param Signed-off-by: yukke42 <yukke42@users.noreply.github.com> --------- Signed-off-by: yukke42 <yukke42@users.noreply.github.com> Signed-off-by: yukke42 <yusuke.muramatsu@tier4.jp> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
…undation#4544) * refactor: update point-image projection Signed-off-by: yukke42 <yukke42@users.noreply.github.com> * feat: add class_mappings for paint points Signed-off-by: yukke42 <yukke42@users.noreply.github.com> * chore: change score_threshold Signed-off-by: yukke42 <yukke42@users.noreply.github.com> * style(pre-commit): autofix * feat: update pointpainting model Signed-off-by: yukke42 <yusuke.muramatsu@tier4.jp> * chore: remove comment out Signed-off-by: yukke42 <yusuke.muramatsu@tier4.jp> * chore: fix param Signed-off-by: yukke42 <yukke42@users.noreply.github.com> --------- Signed-off-by: yukke42 <yukke42@users.noreply.github.com> Signed-off-by: yukke42 <yusuke.muramatsu@tier4.jp> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Description
Related links
Tests performed
sample data is available on #4314.
By the commit for the first item.
The average delay is reduced from 0.270 sec to 0.220 sec on the same environment.
[before]
[after]
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:
score_threshold
parameter in thepointpainting
node has been lowered from 0.45 to 0.35, allowing for more accurate point painting.PointPaintingFusionNode
class has undergone significant changes, including the addition of a helper function, improved transformation methods, and the introduction of a new parameter for specifying classes to be painted.getTransformStamped
function has been reduced from 0.5 seconds to 0.01 seconds, improving performance.