-
Notifications
You must be signed in to change notification settings - Fork 662
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
Localization issue while driving uphill #8069
Comments
On the other hand, I have successfully prevented the scan matcher from failing on hills by adjusting the following parameters, without updating the map.
- z_filter_proc_dev: 1.0
+ z_filter_proc_dev: 3.0
roll_filter_proc_dev: 0.01
- pitch_filter_proc_dev: 0.01
+ pitch_filter_proc_dev: 0.1
- min_x: -60.0
+ min_x: -30.0
max_x: 60.0
- min_y: -60.0
- max_y: 60.0
+ min_y: -30.0
+ max_y: 30.0
This change is intended to cut off the point cloud and prevent the virtual building and hill from being observed simultaneously. kimmins_carla_issue.mp4It is still unstable but I think we can improve it more by adjusting the parameters. |
Thank you for your detailed investigation @KYabuuchi! I did not notice that my I agree to your modification works well, but I got one small question for this issue.
I really appreciate to your help! Thanks! |
@Kim-mins If you don't change the parameters, you'll need to fix the pcd file. Alternatively, avoiding unmapped areas should prevent the issue from occurring. |
Thank you for the clear answers @KYabuuchi! Then it seems better for me to change the parameters.. Thanks a lot! The issue seems gone now, so can I close this issue? |
@Kim-mins Yes. Please close this issue 👌 |
Checklist
Description
Hi team,
I'm currently running Autoware with Carla using bridge implementation, and I found a situation that the localization gets bad while driving uphill, and it eventually makes the ego vehicle stop.
Here's the rviz video and
launch.log
file: [video] [launch.log]At the start of the video, the poincloud matches with the given .pcd file, but it gets worse as the vehicle goes up, and the vehicle eventually stops and could not reach to the goal point.
Also, the trace(skyblue line) in rviz shows that there are oscillation on the baselink.
And according to the log file, there are logs that saying
NVTL
gets worse.Expected behavior
I hope the ego vehicle to drive to the destination well.
Actual behavior
But it could not reach to the given goal point.
Steps to reproduce
Here's the ros2bag file for the reproduction: [ros2bag]
Versions
Possible causes
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: