Formula Student Autonomous Systems
The code for the main driverless system
Loading...
Searching...
No Matches
odometry_integrator_trait.hpp
Go to the documentation of this file.
1#pragma once
2
4
11public:
17 virtual void add_odometry(const common_lib::structures::Pose& pose_difference) = 0;
18
19 virtual ~OdometryIntegratorTrait() = default;
20};
Trait class for odometry integration in SLAM solvers.
virtual ~OdometryIntegratorTrait()=default
virtual void add_odometry(const common_lib::structures::Pose &pose_difference)=0
Integrate odometry data into the SLAM solver.
Struct for pose representation.
Definition pose.hpp:13