Formula Student Autonomous Systems
The code for the main driverless system
Loading...
Searching...
No Matches
difference_based_ready_pose_updater.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <Eigen/Dense>
4#include <utility>
5
10
20
21public:
22 explicit DifferenceBasedReadyPoseUpdater(const SLAMParameters& params);
23
25
27
29
37 virtual std::shared_ptr<PoseUpdater> clone() const override;
38
43 virtual bool pose_ready_for_graph_update() const override;
44};
Class to update the pose of the vehicle, including a method to check if the pose is ready for graph u...
DifferenceBasedReadyPoseUpdater & operator=(const DifferenceBasedReadyPoseUpdater &other)
virtual bool pose_ready_for_graph_update() const override
Check if the accumulated pose difference is greater than the minimum threshold.
virtual std::shared_ptr< PoseUpdater > clone() const override
Clone the pose updater.
Class to update the pose of the vehicle.
Parameters for the SLAM node.