当前位置: 代码迷 >> 综合 >> OPENCV3.4.1 ORB+FLANN
  详细解决方案

OPENCV3.4.1 ORB+FLANN

热度:22   发布时间:2024-01-19 09:44:14.0

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

  相关解决方案