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
In this pull request raulmur/ORB_SLAM2#21, the author converted Vocabulary/ORBvoc.txt to Vocabulary/ORBvoc.bin, which speeds up ORB-SLAM2 start.
But in a Android project, how can I do that?
The text was updated successfully, but these errors were encountered:
Hi
I can't open this link, but I've adapted the Alejandro Silvestri project to use a binary vocabulary in my ORB-SLAM-Android project.
You just should change the line bool bVocLoad = mpVocabulary->loadFromTextFile(strVocFile); in the System.cc file to this one bool bVocLoad = mpVocabulary->loadFromBinaryFile(strVocFile);.
And you should do some changes in the thirdparty DBoW2 library to add the function loadFromBinaryFile, but I guess you can just replace the entire DBoW2 folder for this one: https://github.com/AlejandroSilvestri/os1/tree/PuntosLejanos/Thirdparty/DBoW2
In this pull request raulmur/ORB_SLAM2#21, the author converted Vocabulary/ORBvoc.txt to Vocabulary/ORBvoc.bin, which speeds up ORB-SLAM2 start.
But in a Android project, how can I do that?
The text was updated successfully, but these errors were encountered: