Replies: 0 comments 2 replies
-
I tested the both approach with Results (Before is current implementation, after is implementation with new approach):
With new approach, maximum, total, average lateral errors decreased. Related issue #567 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello everyone,
In current implementation of lateral acceleration filtering in trajectory, we are estimating the curvature by selecting three point. Then, we are calculating the lateral acceleration with this curvature estimation. See here!
I want to suggest a new approach to estimate the curvature in trajectory points. We can estimate the curvature by using the orientation of trajectory points. I think orientation can give more accurate results because it is output of optimization.
We can calculate the desired steering angle with following equation:
After calculate the desired steering angles,
tan(steering_angle) / wheelbase
will give us the curvature of the trajectory point. We can set the velocities w.r.t. this calculation. What do you think? Please feel free to share your thoughts. Thank you!Beta Was this translation helpful? Give feedback.
All reactions