-
Notifications
You must be signed in to change notification settings - Fork 667
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(lane_departure_checker): add braking distance offset to avoid unwanted move after stop #2712
feat(lane_departure_checker): add braking distance offset to avoid unwanted move after stop #2712
Conversation
…wanted move after stop Signed-off-by: Berkay Karaman <brkay54@gmail.com>
thanks, you can fix pre-commit.ci by |
control/lane_departure_checker/config/lane_departure_checker.param.yaml
Outdated
Show resolved
Hide resolved
control/lane_departure_checker/src/lane_departure_checker_node/lane_departure_checker.cpp
Outdated
Show resolved
Hide resolved
Signed-off-by: Berkay Karaman <brkay54@gmail.com>
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 ReportBase: 11.57% // Head: 11.55% // Decreases project coverage by
Additional details and impacted files@@ Coverage Diff @@
## main #2712 +/- ##
==========================================
- Coverage 11.57% 11.55% -0.02%
==========================================
Files 1302 1302
Lines 90790 90951 +161
Branches 23970 24076 +106
==========================================
+ Hits 10510 10511 +1
- Misses 69285 69429 +144
- Partials 10995 11011 +16
*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. |
@brkay54 @xmfcx |
…wanted move after stop (autowarefoundation#2712) Signed-off-by: Berkay Karaman <brkay54@gmail.com>
…wanted move after stop (autowarefoundation#2712) Signed-off-by: Berkay Karaman <brkay54@gmail.com>
…wanted move after stop (autowarefoundation#2712) Signed-off-by: Berkay Karaman <brkay54@gmail.com> Signed-off-by: Alexey Panferov <lexavtanke@gmail.com>
…wanted move after stop (autowarefoundation#2712) Signed-off-by: Berkay Karaman <brkay54@gmail.com>
Signed-off-by: Berkay Karaman brkay54@gmail.com
Description
In current implementation, braking distance is 0.0 if the velocity is 0.0. It causes unwanted motion, for example, if vehicle's footprint will be out of the lane, lane_departure_checker make the vehicle stop. After vehicle slow down, braking distance is getting smaller and footprint won't be out of the lane and vehicle starts to moving. It continues like stop, move, stop, move and so on.
To avoid this problem, I want to suggest that adding offset to braking distance as optional.
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.