-
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(lane_change): moving object is filtered in the extended target lanes #8218
fix(lane_change): moving object is filtered in the extended target lanes #8218
Conversation
Thank you for contributing to the Autoware project! 🚧 If your pull request is in progress, switch it to draft mode. Please ensure:
|
5deb586
to
d59a4c5
Compare
d59a4c5
to
bc1563e
Compare
bc1563e
to
c7c88d1
Compare
planning/behavior_path_planner/autoware_behavior_path_lane_change_module/src/scene.cpp
Outdated
Show resolved
Hide resolved
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #8218 +/- ##
==========================================
- Coverage 23.88% 23.87% -0.01%
==========================================
Files 1380 1381 +1
Lines 101833 101878 +45
Branches 38776 38782 +6
==========================================
+ Hits 24320 24321 +1
- Misses 75009 75053 +44
Partials 2504 2504
*This pull request uses carry forward flags. Click here to find out more. ☔ View full report in Codecov by Sentry. |
Signed-off-by: Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>
Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>
60d6a97
to
61bbe0b
Compare
5bc0b3f
into
autowarefoundation:main
…nes (autowarefoundation#8218) * object 3rd Signed-off-by: Zulfaqar Azmi <zulfaqar.azmi@tier4.jp> * named param Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp> --------- Signed-off-by: Zulfaqar Azmi <zulfaqar.azmi@tier4.jp> Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>
…nes (autowarefoundation#8218) * object 3rd Signed-off-by: Zulfaqar Azmi <zulfaqar.azmi@tier4.jp> * named param Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp> --------- Signed-off-by: Zulfaqar Azmi <zulfaqar.azmi@tier4.jp> Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp> Signed-off-by: xtk8532704 <1041084556@qq.com>
Description
When filtering lane change target objects, the objects that is close to target lanes' bound is considered as target objects. This is to prevent ego from lane change too near to the object. However, if the object is not moving, we don't really need to consider them as the target object.
Before PR
cap-.2024-07-26-16-24-03.mp4
After PR
cap-.2024-07-26-16-35-34.mp4
Related links
Parent Issue:
How was this PR tested?
Notes for reviewers
None.
Interface changes
None.
Effects on system behavior
None.