1 | initial version |
I've also experiencing problem when i used ORB with FlannBasedMatcher on OpenCV3, the problem is, Mat type used in Flann. Maybe you can try add this before declaring your FlannBasedMatcher
if(descriptor.type()!=CV_32F)
descriptor.convertTo(descriptor, CV_32F);
it solved my problem