-
Notifications
You must be signed in to change notification settings - Fork 95
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
Problem with training new vectors for FAST features. #8
Comments
@dorian3d Did you take a look? |
Hi @thesidjway. I tried your code and runs fine. How do you load the vocabulary into the
This library implements static vocabularies only, so new BowVector entries can't be appended to them. The vocabulary has to be done from scratch to add new data. |
Hi, I had a related doubt. PS:The library is very useful, Thanks! |
Also I'm unsure of how to replace: Since if we look at the following lines from Surfset.h in DVision library:
The compute function defined later seems to be storing the descriptors in flattened 1D vector form, the class member 'desciptors', and does not take our own descriptors variable as parameter to store it in that, unlike brief. |
Hello @dorian3d,
First of all thank you for this great library.
I modified the demo.cpp in DBoW2 that works on Orb to train feature vectors in order to generate a vocabulary similar to the one used in DLoopDetector.
Here are the two functions I'm using:
The functions compile and run just fine and I am able to output a voc.gz file but when I import the file into the DLoopDetector, it just crashes.
Could you please help me in this regard?
Also can existing vocabularies be appended with new BoWvectors in any way?
The text was updated successfully, but these errors were encountered: