opencv-contrib-python安装后无法使用的解决方案

当我在使用SIFT的时候需要用到opencv-contrib-python,所以我就在anaconda上pip install opencv-contrib-python,但是安装后,我运行代码的时候,还是提示这个包有问题,错误提示如下所示:

(-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'.........

opencv-contrib-python安装后无法使用的解决方案_第1张图片 

 为什么会出现在这种情况能,经过我查阅资料后,发现这种情况就是因为版本的问题,只要把opencv-contrib-python的版本改成3.3就可以了,具体方法就是在pycharm中pip install --user opencv-contrib-python==3.3.0.10就可以解决这个问题了,

 opencv-contrib-python安装后无法使用的解决方案_第2张图片

 

 

 

你可能感兴趣的:(python与人工智能)