plaetzchen
plaetzchen

Reputation: 767

OpenCV Template Matching: Restrict search area

I have working OpenCV template matching code made with python. Now I am searching for a way to tell OpenCV to search only in a supplied area (x, y, w, h), is that possible?

Regards, Philip

Upvotes: 6

Views: 4265

Answers (1)

berak
berak

Reputation: 39816

roi = image[y:y+h , x:x+w]

cv2.matchTemplate(roi, templ, ...

Upvotes: 6

Related Questions