| 13 | #include "pose_graph/Pose3DError.h" |
| 14 | |
| 15 | PoseGraph::PoseGraph() { |
| 16 | earliest_loop_index = -1; |
| 17 | t_drift = Eigen::Vector3d(0, 0, 0); |
| 18 | yaw_drift = 0; |
| 19 | r_drift = Eigen::Matrix3d::Identity(); |
| 20 | w_t_svin = Eigen::Vector3d(0, 0, 0); |
| 21 | w_r_svin = Eigen::Matrix3d::Identity(); |
| 22 | global_index = 0; |
| 23 | sequence_cnt = 0; |
| 24 | sequence_loop.push_back(0); |
| 25 | base_sequence = 1; |
| 26 | is_fast_localization_ = true; |
| 27 | } |
| 28 | |
| 29 | PoseGraph::~PoseGraph() { t_optimization.join(); } |
| 30 |
nothing calls this directly
no outgoing calls
no test coverage detected