Flann (Tree) + Cross Check
Is there a way to create a matching based on trees and that computes the Cross Checking?
Now, I have two ways to make the matching:
1) FlannBasedMatcher matcher(new flann::KDTreeIndexParams(num_trees));
2) BFMatcher matcher(NORM_HAMMING, CrossCheck = true);
Can I merge both ideas?
Thanks in advance,
You should be able to use the FLANN matcher to keep only the good pairs of keypoints and the good pairs of descriptors. Then, you should be able to use the BF matcher with the new data.
Or you can do the FLANN matching and perform manually the cross check.