-
Notifications
You must be signed in to change notification settings - Fork 658
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(lane_change): remove overlapping preceding lanes #9526
fix(lane_change): remove overlapping preceding lanes #9526
Conversation
Thank you for contributing to the Autoware project! 🚧 If your pull request is in progress, switch it to draft mode. Please ensure:
|
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #9526 +/- ##
=======================================
Coverage 29.54% 29.55%
=======================================
Files 1443 1445 +2
Lines 108489 108537 +48
Branches 41391 41399 +8
=======================================
+ Hits 32055 32073 +18
- Misses 73323 73353 +30
Partials 3111 3111
*This pull request uses carry forward flags. Click here to find out more. ☔ View full report in Codecov by Sentry. |
planning/behavior_path_planner/autoware_behavior_path_lane_change_module/src/utils/utils.cpp
Outdated
Show resolved
Hide resolved
planning/behavior_path_planner/autoware_behavior_path_lane_change_module/src/utils/utils.cpp
Outdated
Show resolved
Hide resolved
d1be3e9
to
77fed5d
Compare
b9b800d
to
744e6aa
Compare
planning/behavior_path_planner/autoware_behavior_path_lane_change_module/src/utils/utils.cpp
Outdated
Show resolved
Hide resolved
744e6aa
to
51a80c9
Compare
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.
Signed-off-by: Zulfaqar Azmi <[email protected]>
Signed-off-by: Zulfaqar Azmi <[email protected]>
Signed-off-by: Zulfaqar Azmi <[email protected]>
Signed-off-by: Zulfaqar Azmi <[email protected]>
Signed-off-by: Zulfaqar Azmi <[email protected]>
d2d5d58
to
53d91e1
Compare
Signed-off-by: Zulfaqar Azmi <[email protected]>
b58d8f6
into
autowarefoundation:main
…ion#9526) * fix(lane_change): remove overlapping preceding lanes Signed-off-by: Zulfaqar Azmi <[email protected]> * fix cpp check Signed-off-by: Zulfaqar Azmi <[email protected]> * start searching disconnected lanes directly Signed-off-by: Zulfaqar Azmi <[email protected]> * just remove starting from overlapped found Signed-off-by: Zulfaqar Azmi <[email protected]> * return non reversed lanes Signed-off-by: Zulfaqar Azmi <[email protected]> * fix precommit Signed-off-by: Zulfaqar Azmi <[email protected]> --------- Signed-off-by: Zulfaqar Azmi <[email protected]>
Description
When the lanes are short, the preceding lane might overlap with the current lanes, as shown in the video below.
This could potentially affect the safety check results. To avoid this, we should remove the overlapping lane.
Before
Preceding lanes (Dark blue lanes) overlap current lanes.
cap-.2024-11-29-19-26-53.mp4
After
Preceding lanes no longer overlaps current lanes.
cap-.2024-11-29-19-24-40.mp4
Related links
Parent Issue:
How was this PR tested?
Notes for reviewers
None.
Interface changes
None.
Effects on system behavior
None.