-
Notifications
You must be signed in to change notification settings - Fork 82
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Lost of of old map in orb slam #31
Comments
In this case, ORB-SLAM loses track because there were not enough features. You can see the line above the first "Fail to track local map", which states fewer than 15 features were being tracked. You can try tuning the params in the yaml file and maybe that can improve the tracking performance. Regardless, this is one of the common failure cases for monocular VSLAM, besides fast rotation, motion blur, extreme brightness/darkness etc., which can only be fundamentally addressed if you change to stereo / add IMU sensor setup. You can find various issues in the original ORB-SLAM2/3 repos such as this one raulmur/ORB_SLAM2#919 to learn more. |
Hi @vigneshwarvenkat , sorry for the late reply. The window "ORB-SLAM3: Current Frame" shows the current tracked image. If this window freezes, it just means that ORB-SLAM3 has lost track and has not been able to recover / create a new map yet. It does not necessarily means the program has stopped working. |
Hi Thien,
we were using the orb slam 3 to map out the surrounding, we have encountered this new problem where, once the orb slam lost it's tracking with it's surrounding, it will start a new map with the previous points being deleted but the key frames are still kept intact. Do you know why this happens and how we can prevent it?
The text was updated successfully, but these errors were encountered: