Odometry

Applies to: robotics, cpp

Odometry estimates a robot's pose by integrating motion measurements, commonly wheel encoder changes.

x += v * cos(theta) * dt;

See also: encoder, kinematics