-
Notifications
You must be signed in to change notification settings - Fork 18
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
score of FBoW is always 1 #4
Comments
Is there a set of images that you have tried and gotten results that don't match your intuition? Can you provide those? In addition, I think we need to do some benchmarking. Do you know of any open data sets that could be used for evaluation? |
Yes, I've run on a dataset, but this dataset will be open in few months. I have run DBoW2 on pairs of images and got scores from 0.003428 to 0.154669. And most similiar images have DBoW2 score only 0.1 - 0.15, instead of 0.9 or something like that. |
@IaroslavS |
Now, that is much better. The score similiarity ranges from 0.002500 to 0.126358 on the same dataset (DBoW2 had score from 0.003428 to 0.154669). The quality of FBoW is almost the same as DBoW2. Thanks for resolving the problem. I'll give later (in 1-2 months or even sooner) link to the paper, containing quality and time performance between different approaches of visual localization, image retrievals and so on, including DBoW2 and FBoW. |
The benchmarking issue will be addressed in #5. Thank you for your contributions. |
hey @IaroslavS I would be really interested to read the paper. If you could provide me a link that would be great, thank you! |
Hi ! I'm sorry, but our paper was rejected and we are looking for other conferences and journals. You can have a look at some results of localization on our HPointLoc dataset here https://github.com/cds-mipt/HPointLoc. |
That looks very interesting, thank you! Good luck with your paper! |
Hi !
I've got problem with computing score via FBoW.
When I run FBoW on custom images (not sequence) I get BoW similiarity score between random two images = 1.
I tried to find out why, compiled FBoW with string
in the https://github.com/OpenVSLAM-Community/FBoW/blob/master/src/fbow.cpp#L432
Then I saw:
It means that final similiarity score is above value of 100. But in the end of calculating score it's limited from above with value 1
https://github.com/OpenVSLAM-Community/FBoW/blob/master/src/fbow.cpp#L458-L459
Is it correct to limit score value with 1 ?
The text was updated successfully, but these errors were encountered: