我在实时摄像头捕获中使用opencv模板匹配,并收到错误消息:
error: (-215) _img.size().height <= _templ.size().height && _img.size().width <= _templ.size().width in function matchTemplate
环境:
OpenCV: 3.4.1
Python3
代码(来自Official website doc的示例,我只是替换图片)
import cv2 as cv
import numpy as np
img_rgb = cv.imread('mybook.png')
img_gray = cv.cvtColor(img_rgb, cv.COLOR_BGR2GRAY)
template = cv.imread('book.jpg',0)
w, h = template.shape[::-1]
res = cv.matchTemplate(img_gray,template,cv.TM_CCOEFF_NORMED)
threshold = 0.8
loc = np.where( res >= threshold)
for pt in zip(*loc[::-1]):
cv.rectangle(img_rgb, pt, (pt[0] + w, pt[1] + h), (0,0,255), 2)
cv.imwrite('res.png',img_rgb)
我想知道我做错了什么? 非常感谢!
答案 0 :(得分:1)
问题是因为我想用于模板的图片比我原来的图片大。
所以我只需更改模板即可修复! 感谢@ dorverbin的评论!!