本文主要是介绍FFD:Fast Feature Detector运行失败解决,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
项目:
https://github.com/mogvision/FFDhttps://github.com/mogvision/FFD
问题描述:用自己图片测试时报错没有txt文件。
原因猜测:他的txt文件应该是由FFD程序创建的,如果没有生成,那说明FFD执行出错了。
1、我直接运行FFD,发现确实报错了。可能是作者用到了OpenCV3.2来编译,而我电脑上装的是4.5版本,只有libopencv_calib3d.so.4.5。我重新下载了3.2.0版本并编译。
./FFD: error while loading shared libraries: libopencv_calib3d.so.3.2: cannot open shared object file: No such file or directory
2、“Ubuntu下多版本OpenCV共存和切换” 可参考:https://blog.csdn.net/learning_tortosie/article/details/80594399https://blog.csdn.net/learning_tortosie/article/details/80594399%E3%80%82%E5%A6%82%E6%9E%9C%E9%81%87%E5%88%B0%E5%AE%89%E8%A3%853.2%E6%8A%A5%E9%94%99%EF%BC%8C%E5%8F%AF%E5%8F%82%E8%80%83%EF%BC%9Ahttps://blog.csdn.net/goodxin_ie/article/details/82856008
如果遇到安装3.2报错,可参考:
ubuntu(linux)下安装openCV(ffmpeg导致的编译不通过的解决办法)_goodxin_ie的博客-CSDN博客 1.opencv-3.1.0/modules/videoio/src/cap_ffmpeg_impl.hpp:1313:21: error: ‘CODEC_FLAG_GLOBAL_HEADER’ was not declared in this scope c->flags |= CODEC_FLAG_GLOBAL_HEADER;2.opencv-3.1.0...https://blog.csdn.net/goodxin_ie/article/details/82856008
3、安装完成后,参考这个issue添加路径:
https://github.com/cggos/DIPDemoQt/issues/1。https://github.com/cggos/DIPDemoQt/issues/1%E3%80%82
4、亲测可用~
这篇关于FFD:Fast Feature Detector运行失败解决的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!