1.问题描述:
本人在anaconda+python3.9+opencv4.4.X的环境下,使用surf和sift函数时,会报出包括如下的错误:
AttributeError: module 'cv2' has no attribute 'xfeatures2d'
在网上搜索解决方案发现,在补个包的基础上,由于版权问题,会进一步报出如下错误:
OpenCV(3.4.3) C:\projects\opencv-python\opencv_contrib\modules\xfeatures2d\src\sift.cpp:1207:
error: (-213:The function/feature is not implemented)
This algorithm is patented and is excluded in this configuration;
Set OPENCV_ENABLE_NONFREE CMake option and rebuild the library in function ‘cv::xfeatures2d::SIFT::create’
故而大佬们建议安装3.4.2.16这个版本的opencv:
module 'cv2.cv2' has no attribute 'xfeatures2d'(问题已解决,亲测有效!)_XRRHH的博客-优快云博客_cv2.xfeatures2d
但似乎是由于使用的是anaconda的关系,无法搜索到对应的包。看评论也有很多更低版本的opencv同样无法正常使用这个包,所以暂时放弃随意找个低版本的包安装的想法.