Ask Your Question
0

What is a FlannBasedMatcher ?

asked 2015-03-27 12:24:38 -0600

Diego Moreira gravatar image

I don't understand what is the FlannBasedMatcher ? Someone can explain me ?

Thanks!

edit retag flag offensive close merge delete

1 answer

Sort by ยป oldest newest most voted
1

answered 2015-03-27 19:52:04 -0600

Feature matching means that you want to find similar descriptors. For SIFT, a descriptor vector is a 64 (or 128) dimensional vector and you want to find other vectors with a small distance (in most cases euclidean distance or something similar). FLANN is a library that provides algorithms to find the most similar descriptors out of a large set of descriptors for a given descriptor. To this end it uses a tree-like datastructure that has to be generated before you can find similar descriptors. So in short, you invest some time to create this structure but afterwards, you can find similar descriptors very fast.

edit flag offensive delete link more

Question Tools

1 follower

Stats

Asked: 2015-03-27 12:24:38 -0600

Seen: 232 times

Last updated: Mar 27 '15