You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've noticed that the Odometry::updateFromVelocity function calculates linear displacement using the following formula:
linear = (left_vel + right_vel) * 0.5
While this correctly calculates the average linear velocity, it might not be directly equivalent to linear displacement without considering the time interval (dt) between measurements.