gpt4 book ai didi

python - 如何在 OpenCV for Python 中使用冲浪和筛选检测器

转载 作者:太空宇宙 更新时间:2023-11-03 14:15:33 26 4
gpt4 key购买 nike

我正在尝试使用函数 SURF() 进行特征匹配的代码。执行时会出现错误“AttributeError: 'module' object has no attribute 'SURF'”。

如何为 Python (Windows) 下载此模块并修复此错误?

最佳答案

您可以尝试使用 ORB(Oriented FAST and Rotated BRIEF)作为 open cv 中 SURF 的替代品。它的效果几乎与 SURF 和 SIFT 一样好,而且它免费不像 SIFTSURF 已获得专利不得用于商业用途。
您可以在 opencv-python 文档中了解更多信息 here

下面是方便您使用的示例代码

import cv2
from matplotlib import pyplot as plt

img1 = cv2.imread('text.png',cv2.COLOR_BGR2GRAY) # queryImage
img2 = cv2.imread('original.png',cv2.COLOR_BGR2GRAY) # trainImage
# Initiate SIFT detector
orb = cv2.ORB_create()

# find the keypoints and descriptors with SIFT
kp1, des1 = orb.detectAndCompute(img1,None)
kp2, des2 = orb.detectAndCompute(img2,None)
# create BFMatcher object
bf = cv2.BFMatcher(cv2.NORM_HAMMING, crossCheck=True)
# Match descriptors.
matches = bf.match(des1,des2)

# Sort them in the order of their distance.
matches = sorted(matches, key = lambda x:x.distance)
# Draw first 10 matches.
img3 = cv2.drawMatches(img1,kp1,img2,kp2,matches[:10],None, flags=2)

plt.imshow(img3),plt.show()

关于python - 如何在 OpenCV for Python 中使用冲浪和筛选检测器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33670222/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com