-
Notifications
You must be signed in to change notification settings - Fork 668
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(goal_planner): dense goal candidate sampling in BusStopArea #8795
feat(goal_planner): dense goal candidate sampling in BusStopArea #8795
Conversation
Thank you for contributing to the Autoware project! 🚧 If your pull request is in progress, switch it to draft mode. Please ensure:
|
7643e4b
to
4f61667
Compare
if ( | ||
parameters_.bus_stop_area.use_bus_stop_area && | ||
!isInAreas(transformed_vehicle_footprint, bus_stop_area_polygons)) { | ||
break; |
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.
break; | |
continue; |
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.
sorry the name of isInAreas
is bad, it return true, if it intersects.
for bus stop are the footprint should be completely in the area.
better to separate functions using
- intersects
- within
Signed-off-by: Mamoru Sobue <[email protected]>
Signed-off-by: Mamoru Sobue <[email protected]>
Signed-off-by: Mamoru Sobue <[email protected]>
Signed-off-by: Mamoru Sobue <[email protected]>
Signed-off-by: Mamoru Sobue <[email protected]>
80f4524
to
a2962e1
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #8795 +/- ##
==========================================
- Coverage 25.13% 25.12% -0.02%
==========================================
Files 1325 1329 +4
Lines 98662 98738 +76
Branches 38132 39555 +1423
==========================================
+ Hits 24798 24805 +7
- Misses 71376 71433 +57
- Partials 2488 2500 +12
*This pull request uses carry forward flags. Click here to find out more. ☔ View full report in Codecov by Sentry. |
Signed-off-by: Mamoru Sobue <[email protected]>
@kosuke55 Can you approve this ? |
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
…owarefoundation#8795) Signed-off-by: Mamoru Sobue <[email protected]> Signed-off-by: emuemuJP <[email protected]>
Description
depends #8794
launcher PR: autowarefoundation/autoware_launch#1156
Related links
How was this PR tested?
use_bus_stop_area = false
use_bus_stop_area = true
Notes for reviewers
None.
Interface changes
None.
Effects on system behavior
None.