-
Notifications
You must be signed in to change notification settings - Fork 691
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(static_obstacle_avoidance): don't automatically avoid ambiguous vehicle #7851
fix(static_obstacle_avoidance): don't automatically avoid ambiguous vehicle #7851
Conversation
Thank you for contributing to the Autoware project! 🚧 If your pull request is in progress, switch it to draft mode. Please ensure:
|
46172ea
to
a9f3f06
Compare
…ehicle Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
a9f3f06
to
ad216a8
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
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #7851 +/- ##
==========================================
- Coverage 28.74% 28.73% -0.01%
==========================================
Files 1593 1594 +1
Lines 116848 116822 -26
Branches 50027 50012 -15
==========================================
- Hits 33586 33573 -13
+ Misses 74221 74211 -10
+ Partials 9041 9038 -3
*This pull request uses carry forward flags. Click here to find out more. ☔ View full report in Codecov by Sentry. |
…ehicle (autowarefoundation#7851) * fix(static_obstacle_avoidance): don't automatically avoid ambiguous vehicle Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com> * chore(schema): update schema Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com> --------- Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
…ehicle (autowarefoundation#7851) * fix(static_obstacle_avoidance): don't automatically avoid ambiguous vehicle Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com> * chore(schema): update schema Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com> --------- Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
…ehicle (autowarefoundation#7851) * fix(static_obstacle_avoidance): don't automatically avoid ambiguous vehicle Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com> * chore(schema): update schema Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com> --------- Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
Description
Add new option to select behavior policy for the vehicle this module can't judge if it's a parked vehicle or not.
Policy:
auto
If user set
auto
policy, this module avoids such a ambiguous vehicle automatically.simplescreenrecorder-2024-07-10_08.49.30.mp4
Policy:
manual
If user set
manual
policy, this module generates avoidance candidate path and keeps waiting execution until operator approves it.simplescreenrecorder-2024-07-10_10.41.36.mp4
Policy:
ignore
If user set
ignore
policy, this module never avoids such a ambiguous vehicle.simplescreenrecorder-2024-07-10_10.59.51.mp4
Related links
Parent Issue:
How was this PR tested?
Notes for reviewers
None.
Interface changes
None.
Effects on system behavior
None.