-
Notifications
You must be signed in to change notification settings - Fork 673
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(map_based_prediciton): use orientation reliability in prediction #5435
feat(map_based_prediciton): use orientation reliability in prediction #5435
Conversation
…ilable Signed-off-by: yoshiri <[email protected]>
…h generation Signed-off-by: yoshiri <[email protected]>
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## main #5435 +/- ##
==========================================
- Coverage 14.77% 14.71% -0.06%
==========================================
Files 1662 1662
Lines 115385 115823 +438
Branches 35616 35616
==========================================
Hits 17043 17043
- Misses 79118 79556 +438
Partials 19224 19224
*This pull request uses carry forward flags. Click here to find out more.
☔ View full report in Codecov by Sentry. |
WalkthroughThe changes introduce a new function called Changes
Uplevel your code reviews with CodeRabbit ProCodeRabbit ProIf you like this project, please support us by purchasing the Pro version. The Pro version has advanced context, superior noise reduction and several proprietary improvements compared to the open source version. Moreover, CodeRabbit Pro is free for open source projects. |
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 (1)
- perception/map_based_prediction/src/map_based_prediction_node.cpp (2)
Review comments generated (0)
- Review: 0
- LGTM: 0
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/map_based_prediction/src/map_based_prediction_node.cpp
Outdated
Show resolved
Hide resolved
Co-authored-by: Kyoichi Sugahara <[email protected]>
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!
…autowarefoundation#5435) * replace object yaw with lanelets yaw when object orientation is unavailable Signed-off-by: yoshiri <[email protected]> * fix unintended behavior: add escape and move replace state before path generation Signed-off-by: yoshiri <[email protected]> * Update perception/map_based_prediction/src/map_based_prediction_node.cpp Co-authored-by: Kyoichi Sugahara <[email protected]> --------- Signed-off-by: yoshiri <[email protected]> Co-authored-by: Kyoichi Sugahara <[email protected]> Signed-off-by: yoshiri <[email protected]>
…autowarefoundation#5435) * replace object yaw with lanelets yaw when object orientation is unavailable Signed-off-by: yoshiri <[email protected]> * fix unintended behavior: add escape and move replace state before path generation Signed-off-by: yoshiri <[email protected]> * Update perception/map_based_prediction/src/map_based_prediction_node.cpp Co-authored-by: Kyoichi Sugahara <[email protected]> --------- Signed-off-by: yoshiri <[email protected]> Co-authored-by: Kyoichi Sugahara <[email protected]>
Description
object.kinematics.orientation_availability
to find unreliable yaw inputSee the sample output:
Tests performed
Tested with Psim.
This is related radar_far_away_perception project. See related PR.
Effects on system behavior
Nothing
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
replaceObjectYawWithLaneletsYaw
in themap_based_prediction_node.cpp
file to improve path prediction accuracy by replacing the yaw angle of objects with the mean yaw angle of the lanelets they are on.objectsCallback
function in themap_based_prediction_node.cpp
file to callreplaceObjectYawWithLaneletsYaw
before generating predicted paths, preventing path bending caused by unreliable object yaw estimation.