lhanaf / MILD

open source code for loop closure detection, binary feature based.
Other
67 stars 20 forks source link

Querydatabase #1

Closed RemyYang closed 7 years ago

RemyYang commented 7 years ago

I run into a strange problem when call the function 'int query_database(cv::Mat descriptor, std::vector &score);'. Values of the return score sometimes are much larger than 1.0, like over 200. I would like to ask what is the interval of value of score? Than you very much!

lhanaf commented 7 years ago

It's the similarity score defined in Eqn 3. The score could vary from 0 to infinity. The simplest way to use this score is just consider the top 5 maximum values as loop closure candidates. You can also try the Bayesian Inference, which will normalize the similarity score and output a loop closure probability, ranging from 0 to 1.

RemyYang commented 7 years ago

Than you very much for your reply! Your work is great! Is it possible that you could share a PDF of your IROS 2017 paper? Thanks again!

lhanaf commented 7 years ago

Sure, I just put this paper on arxiv: https://arxiv.org/abs/1709.05833