Formula Student Autonomous Systems
The code for the main driverless system
Loading...
Searching...
No Matches
map.hpp File Reference
Include dependency graph for map.hpp:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Variables

const std::map< std::string, std::function< std::shared_ptr< PoseUpdater >(const SLAMParameters &)>, std::less<> > pose_updater_constructors_map
 

Variable Documentation

◆ pose_updater_constructors_map

const std::map<std::string, std::function<std::shared_ptr<PoseUpdater>(const SLAMParameters&)>, std::less<> > pose_updater_constructors_map
Initial value:
= {
{"difference_based_ready",
[](const SLAMParameters& params) -> std::shared_ptr<PoseUpdater> {
return std::make_shared<DifferenceBasedReadyPoseUpdater>(params);
}},
{"base_pose_updater",
[](const SLAMParameters& params) -> std::shared_ptr<PoseUpdater> {
return std::make_shared<PoseUpdater>(params);
}},
}
Parameters for the SLAM node.

Definition at line 16 of file map.hpp.