-
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
Collision path when the part of obstacle crosses the centerline #934
Comments
Following the document, the avoidance path should be calculated considering the vehicle size. Needs to be fixed. @zulfaqar-azmi-t4 Could you see this issue? |
@shulanbushangshu cc: @TakaHoribe |
@taikitanaka3 |
@shulanbushangshu yes I could reproduce the problem thank you. |
@zulfaqar-azmi-t4 @TakaHoribe |
I think there is something wrong with the calculation method of offset distance. |
TO solve this
|
@taikitanaka3 @zulfaqar-azmi-t4 const auto max_shift_length =
|
The current source code has simplify the code slightly. But yes, do you have any idea's for the improvement? |
@zulfaqar-azmi-t4 @taikitanaka3 |
@shulanbushangshu |
@shulanbushangshu |
* feat(AEB): add new params for detection_range Signed-off-by: Shin-kyoto <aquashin0202@gmail.com> * fix(AEB): fix mistake Signed-off-by: Shin-kyoto <aquashin0202@gmail.com> --------- Signed-off-by: Shin-kyoto <aquashin0202@gmail.com>
Checklist
Description
When large obstacle is present and part of the obstacle crosses the centerline of the lane, the calculated maximum offset distance decreases rather than increases.
In this case, the planned path would collide with the obstacle.
Expected behavior
The calculated offset distance will continue to grow, and the planned path will not collide with obstacles.
The calculation of offset distance must be changed to deal with the obstacle (the part of obstacle crossing the centerline of the lane)
Actual behavior
The calculated maximum offset distance decreases rather than increases in this case.
The planned path collides with large obstacle.
Steps to reproduce
1.Start autoware planning simulator using default;
2. Set initial position and gobal position;
3.Set a larger obstacle(like a truck) which intersects the lanes (part of the obstacle crosses the centerline of the lane)between initial position and gobal position.
Versions
1.OS: Ubuntun 20.04
2.ROS2: Galactic
3.Autoware: Autoware.universe:main
Possible causes
The calculation of offset distance can not deal with obstacle that partially cross the centerline. The calculated maximum offset distance decreases in this case.
Additional context
No response
The text was updated successfully, but these errors were encountered: