| 152 | } |
| 153 | |
| 154 | Eigen::Matrix3f KeyFrame::GetImuRotation() |
| 155 | { |
| 156 | unique_lock<mutex> lock(mMutexPose); |
| 157 | return (mTwc * mImuCalib.mTcb).rotationMatrix(); |
| 158 | } |
| 159 | |
| 160 | Sophus::SE3f KeyFrame::GetImuPose() |
| 161 | { |
nothing calls this directly
no test coverage detected