-
Notifications
You must be signed in to change notification settings - Fork 67
feat(autoware_path_generator): use autoware_trajectory for cropping bounds #349
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(autoware_path_generator): use autoware_trajectory for cropping bounds #349
Conversation
Thank you for contributing to the Autoware project! 🚧 If your pull request is in progress, switch it to draft mode. Please ensure:
|
4c57449
to
a94c8e5
Compare
LGTM |
eec6a9b
to
724ea2e
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #349 +/- ##
===========================================
- Coverage 78.75% 19.57% -59.19%
===========================================
Files 11 96 +85
Lines 193 4430 +4237
Branches 73 879 +806
===========================================
+ Hits 152 867 +715
- Misses 11 3461 +3450
- Partials 30 102 +72
☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
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
- Spline interpolation of autoware_trajectory is buggy, so it is neccesary to fix in aother PR
- Linear interpolation is appropriate for path bound, since we want to maintain the lane boundaries. Linear interpolation is not buggy and can be replaced (this PR)
…ounds Signed-off-by: Y.Hisaki <yhisaki31@gmail.com>
724ea2e
to
72bbccf
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.
It'll be easier to understand itself. LGTM
Description
Use autoware_trajectory for cropping bounds in
crop_line_string
. These changes simplify the function without changing the behavior.Related links
How was this PR tested?
psim
path_generator.webm
https://evaluation.tier4.jp/evaluation/reports/fe0540ad-4308-55e0-a13d-48919cee6add?project_id=prd_jt
Notes for reviewers
None.
Interface changes
None.
Effects on system behavior
None.