【发布时间】:2019-01-13 23:07:23
【问题描述】:
我正在尝试使用 MSER 提取关键点并使用 SIFT 作为特征描述符,然后匹配匹配的关键点。我使用 Python 做了以下操作:
import numpy as np
import cv2
from matplotlib import pyplot as plt
img1 = cv2.imread('1.jpg')
img2 = cv2.imread('2.jpg')
mser = cv2.MSER_create()
kp1 = mser.detect(img1)
kp2 = mser.detect(img2)
sift = cv2.xfeatures2d.SIFT_create()
kp1, des1 = sift.detectAndCompute(img1, kp1)
kp2, des2 = sift.detectAndCompute(img2, kp2)
bf = cv2.BFMatcher()
matches = bf.knnMatch(des1,des2, k=2)
good = []
for m, n in matches:
if m.distance < 0.8 * n.distance:
good.append(m)
good = sorted(good, key=lambda x: x.distance)
print len(good)
matching_result = cv2.drawMatches(img1, kp1, img2, kp2, good, None, flags=2)
cv2.imwrite('result.jpg', matching_result)
但是,得到以下错误:
kp1, des1 = sift.detectAndCompute(img1, kp1)
TypeError: mask is not a numpy array, neither a scalar
我该如何解决这个问题?而且,我使用检测器和描述符的方式是否正确?
【问题讨论】:
-
而不是
detectAndComputepython api中有compute方法吗?如果您想输入预先计算的关键点来描述它们,则应该使用它。
标签: python image opencv image-processing computer-vision