Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

openCV template matching error: (-215)

I am using opencv template matching in real time camera capture, and got the error message:

error: (-215) _img.size().height <= _templ.size().height && _img.size().width <= _templ.size().width in function matchTemplate

enviroment:

OpenCV: 3.4.1
Python3

code (is the example from Official website doc, I just replace the picture)

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)

I wonder if I did something wrong? Thanks a lot!

like image 402
JeffChen Avatar asked May 01 '18 03:05

JeffChen


1 Answers

The problem is because that the picture I want to used for template is bigger than my original picture.

So i just change the template and it fixed! Thanks for @dorverbin's comment!!

like image 162
JeffChen Avatar answered Oct 04 '22 01:10

JeffChen