1

我有一个 Python/OpenCV 项目,我正在尝试使用 opencv-contrib 中的 xfeatures2d 模块。我使用的是 Mac,我的 IDE 是 PyCharm。我已经通过 Preferences > Project Intepreter 安装了软件包 opencv-contrib-python 和 opencv-python。

但是,当我尝试运行下面的代码时,出现以下错误:

import cv2
import numpy as np

img = cv2.imread("NotreDame.jpg", 0)

sift = cv2.xfeatures2d.SIFT_create()


line 6, in <module>
sift = cv2.xfeatures2d.SIFT_create()
cv2.error: OpenCV(4.1.0) /Users/travis/build/skvark/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 'create'

我已经在我的计算机上安装了 opencv 和 opencv-contrib,使用:

 $ pip install opencv-python==3.4.2.17
 $ pip install opencv-contrib-python==3.4.2.17

我不确定如何解决此错误。任何见解都值得赞赏。

4

0 回答 0