You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As is shown in LoopClosing.cc, Loop Detection is off in IMU mode.
Does any one notice this and understand why?
// Check if there are keyframes in the queue
if (CheckNewKeyFrames()) {
// Detect loop candidates and check covisibility consistency
if (DetectLoop()) {
if (!mbUseIMU) {
// Compute similarity transformation [sR|t]
// In the stereo/RGBD case s=1
if (ComputeSim3()) {
// Perform loop fusion and pose graph optimization
LOG(INFO) << "Find a loop, correct it" << endl;
CorrectLoop();
}
}
}
}
The text was updated successfully, but these errors were encountered:
As is shown in LoopClosing.cc, Loop Detection is off in IMU mode.
Does any one notice this and understand why?
The text was updated successfully, but these errors were encountered: