OPENCV下使用ORB+FLANN
出现unsupported format or combination of formats(type 0)in cv::flann::buildIndex_
查询后发现时ORB得出的descriptors数据格式与flann的数据格式不相符。
在使用compute(frame,keypoints,descriptors);后加入一句descriptors.convertTo(descriptors,CV_32F);即可。
查看下关于FLANN的源码,这里算是不求甚解啦~
参考链接
http://answers.opencv.org/question/59996/flann-error-in-opencv-3/
https://stackoverflow.com/questions/23634730/opencv-flann-matcher-crashes#
https://blog.csdn.net/u014686356/article/details/52300995