cv2.xfeatures2d.SIFT_create()

本来计划使用cv2调用SIFT算法,对图片进行特征提取,但不断给我报错。
module ‘cv2.cv2‘ has no attribute ‘xfeatures2d‘ 报错解决方案_python
opencv-contrib-python只能是这个版本,3.4.3以上的版本有算法保护。
然后SIFT算法完美运行。
module ‘cv2.cv2‘ has no attribute ‘xfeatures2d‘ 报错解决方案_python_02