0

目前我正在使用 python 处理 opevcv 但是当我使用

    kp1 = orb.detect(img1,None)
    kp2 = orb.detect(img2,None)
    kp1, des1 = orb.compute(img1, kp1)
    kp2, des2 = orb.compute(img2, kp2)
    matches = matcher.match(des1, des2)

我收到未定义匹配器的错误

    matches = matcher.match(des1, des2)
    NameError: name 'matcher' is not defined

,我在 python 2.7 中使用 opencv 3.0.0,谁能告诉我为什么会出现这个错误?我们可以在 python 中使用 matcher 吗?

4

2 回答 2

2

您需要先创建matcher对象。一个完整的例子可以在OpenCV 教程中找到:

import numpy as np
import cv2
from matplotlib import pyplot as plt

img1 = cv2.imread('box.png',0)          # queryImage
img2 = cv2.imread('box_in_scene.png',0) # trainImage

# Initiate ORB detector
orb = cv2.ORB()

# find the keypoints and descriptors with ORB
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], flags=2)

plt.imshow(img3),plt.show()
于 2016-01-27T13:45:18.017 回答
2

在上面的代码中,而不是orb = cv2.ORB()

use orb = cv2.ORB_create()

这解决了版本兼容性问题:

TypeError:不正确的自我类型(必须是“Feature2D”或其派生词)

于 2019-01-03T04:48:56.507 回答