openCV template matching error: (-215)
Asked Answered
C

1

7

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!

Chicory answered 1/5, 2018 at 3:5 Comment(5)
By reading the error you can tell that your template might be larger than your image.Tetroxide
Oh my! I took the picture from cellphone and template from mac screenshot. I didn't notice the size problem. Thanks a lot!Chicory
You should post your solution as an answer and then accept it as the correct answer after a few days - So that this question does not remain unanswered :)Snort
OK, thanks for reminding me thatChicory
@dobervin I am having the same issue. But my template is smaller than the image.Mylander
C
6

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!!

Chicory answered 7/5, 2018 at 2:4 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.