-
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(static_obstacle_avoidance): ignore pedestrian/cyclist who is not on road edge #7850
fix(static_obstacle_avoidance): ignore pedestrian/cyclist who is not on road edge #7850
Conversation
Thank you for contributing to the Autoware project! 🚧 If your pull request is in progress, switch it to draft mode. Please ensure:
|
…on road edge Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
674f3df
to
3fc9fd3
Compare
Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
...ning/behavior_path_planner/autoware_behavior_path_static_obstacle_avoidance_module/README.md
Show resolved
Hide resolved
…bstacle_avoidance_module/README.md Co-authored-by: Go Sakayori <go-sakayori@users.noreply.github.com>
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #7850 +/- ##
==========================================
- Coverage 28.66% 28.65% -0.01%
==========================================
Files 1588 1589 +1
Lines 116375 116415 +40
Branches 49688 49703 +15
==========================================
+ Hits 33357 33361 +4
- Misses 73907 73944 +37
+ Partials 9111 9110 -1
*This pull request uses carry forward flags. Click here to find out more. ☔ View full report in Codecov by Sentry. |
…on road edge (autowarefoundation#7850) * fix(static_obstacle_avoidance): ignore pedestrian/cyclist who is not on road edge Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com> * docs(static_obstacle_avoidance): update flowchart Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com> * Update planning/behavior_path_planner/autoware_behavior_path_static_obstacle_avoidance_module/README.md Co-authored-by: Go Sakayori <go-sakayori@users.noreply.github.com> --------- Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com> Co-authored-by: Go Sakayori <go-sakayori@users.noreply.github.com>
…on road edge (autowarefoundation#7850) * fix(static_obstacle_avoidance): ignore pedestrian/cyclist who is not on road edge Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com> * docs(static_obstacle_avoidance): update flowchart Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com> * Update planning/behavior_path_planner/autoware_behavior_path_static_obstacle_avoidance_module/README.md Co-authored-by: Go Sakayori <go-sakayori@users.noreply.github.com> --------- Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com> Co-authored-by: Go Sakayori <go-sakayori@users.noreply.github.com>
…on road edge (autowarefoundation#7850) * fix(static_obstacle_avoidance): ignore pedestrian/cyclist who is not on road edge Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com> * docs(static_obstacle_avoidance): update flowchart Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com> * Update planning/behavior_path_planner/autoware_behavior_path_static_obstacle_avoidance_module/README.md Co-authored-by: Go Sakayori <go-sakayori@users.noreply.github.com> --------- Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com> Co-authored-by: Go Sakayori <go-sakayori@users.noreply.github.com> Signed-off-by: palas21 <palas21@itu.edu.tr>
…on road edge (autowarefoundation#7850) * fix(static_obstacle_avoidance): ignore pedestrian/cyclist who is not on road edge Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com> * docs(static_obstacle_avoidance): update flowchart Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com> * Update planning/behavior_path_planner/autoware_behavior_path_static_obstacle_avoidance_module/README.md Co-authored-by: Go Sakayori <go-sakayori@users.noreply.github.com> --------- Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com> Co-authored-by: Go Sakayori <go-sakayori@users.noreply.github.com>
…on road edge (#7850) * fix(static_obstacle_avoidance): ignore pedestrian/cyclist who is not on road edge Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com> * docs(static_obstacle_avoidance): update flowchart Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com> * Update planning/behavior_path_planner/autoware_behavior_path_static_obstacle_avoidance_module/README.md Co-authored-by: Go Sakayori <go-sakayori@users.noreply.github.com> --------- Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com> Co-authored-by: Go Sakayori <go-sakayori@users.noreply.github.com>
…on road edge (autowarefoundation#7850) * fix(static_obstacle_avoidance): ignore pedestrian/cyclist who is not on road edge Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com> * docs(static_obstacle_avoidance): update flowchart Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com> * Update planning/behavior_path_planner/autoware_behavior_path_static_obstacle_avoidance_module/README.md Co-authored-by: Go Sakayori <go-sakayori@users.noreply.github.com> --------- Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com> Co-authored-by: Go Sakayori <go-sakayori@users.noreply.github.com>
Description
As this module didn't have proper filtering flow for PEDESTRIAN and BICYCLE, sometimes it caused unnecessary avoidance maneuver. Therefor, I added new condition to ignore them if they are in intersection or stop on middle of the road.
simplescreenrecorder-2024-07-05_09.01.03.mp4
Related links
Parent Issue:
How was this PR tested?
simplescreenrecorder-2024-07-01_18.32.33.mp4
Notes for reviewers
None.
Interface changes
None.
Effects on system behavior
None.