目前我正在使用 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 吗?