-
Notifications
You must be signed in to change notification settings - Fork 683
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(behavior_path_planner): keep original points in resampling of pull over #2478
feat(behavior_path_planner): keep original points in resampling of pull over #2478
Conversation
@@ -66,7 +67,7 @@ PathWithLaneId resamplePathWithSpline(const PathWithLaneId & path, double interv | |||
transformed_path.at(i) = path.points.at(i).point; | |||
} | |||
|
|||
constexpr double epsilon = 0.01; | |||
constexpr double epsilon = 0.1; |
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.
0.01 seems too close and sometimes causes path distortion.
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.
constexpr double epsilon = 0.1; | |
constexpr double epsilon = 0.2; |
is better from @TakaHoribe
Codecov ReportBase: 10.56% // Head: 10.48% // Decreases project coverage by
Additional details and impacted files@@ Coverage Diff @@
## main #2478 +/- ##
==========================================
- Coverage 10.56% 10.48% -0.09%
==========================================
Files 1264 1264
Lines 87260 88234 +974
Branches 20936 21637 +701
==========================================
+ Hits 9222 9249 +27
- Misses 68157 69031 +874
- Partials 9881 9954 +73
*This pull request uses carry forward flags. Click here to find out more.
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
ab2536b
to
fcd3f8c
Compare
fcd3f8c
to
edfb2d5
Compare
Signed-off-by: kosuke55 <kosuke.tnp@gmail.com>
Signed-off-by: kosuke55 <kosuke.tnp@gmail.com>
Signed-off-by: kosuke55 <kosuke.tnp@gmail.com>
This reverts commit edfb2d5. Signed-off-by: kosuke55 <kosuke.tnp@gmail.com>
60db66c
to
7cd0aef
Compare
tier4 internal scenario test |
Signed-off-by: kosuke55 <kosuke.tnp@gmail.com>
9c549ef
to
5691b07
Compare
@TakaHoribe |
Signed-off-by: kosuke55 <kosuke.tnp@gmail.com>
11c7625
to
792c102
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.
This is a temporal solution. Will be redesigned in the future.
…ll over (autowarefoundation#2478) * feat(behavior_path_planner): keep original points in resampling Signed-off-by: kosuke55 <kosuke.tnp@gmail.com> * Update planning/behavior_path_planner/src/path_utilities.cpp Signed-off-by: kosuke55 <kosuke.tnp@gmail.com> * change motion_utils::overlap_threshold to 0.2 and use it Signed-off-by: kosuke55 <kosuke.tnp@gmail.com> * Revert "change motion_utils::overlap_threshold to 0.2 and use it" This reverts commit edfb2d5. Signed-off-by: kosuke55 <kosuke.tnp@gmail.com> * keep input points only in pull over Signed-off-by: kosuke55 <kosuke.tnp@gmail.com> * Add comment of temporary processe Signed-off-by: kosuke55 <kosuke.tnp@gmail.com> Signed-off-by: kosuke55 <kosuke.tnp@gmail.com> Signed-off-by: kminoda <koji.minoda@tier4.jp>
Signed-off-by: kosuke55 kosuke.tnp@gmail.com
Description
resamplePathWithSpline
false
defaultly, so in each scene module do not keep the orintal points unintentionally (not to increase calculation cost)Related links
tier4 internal slack
Tests performed
psim, real vehicle
tier4 internal scenario test
821/825 -> 821/825
Notes for reviewers
Pre-review checklist for the PR author
The PR author must check the checkboxes below when creating the PR.
In-review checklist for the PR reviewers
The PR reviewers must check the checkboxes below before approval.
Post-review checklist for the PR author
The PR author must check the checkboxes below before merging.
After all checkboxes are checked, anyone who has write access can merge the PR.