可以将templateMatch与二进制图像一起使用吗?我有一个错误

时间:2019-05-21 14:07:43

标签: python opencv template-matching opencv-python binary-image

是否可以templateMatch二进制图像?我已经尝试过了,没有任何帮助。我总是遇到错误:

cv2.error: OpenCV(3.4.5) C:\projects\opencv-python\opencv\modules\imgproc\src\templmatch.cpp:1107: error: (-215:Assertion failed) (depth == CV_8U || depth == CV_32F) && type == _templ.type() && _img.dims() <= 2 in function 'cv::matchTemplate'

我尝试使用astype(np.uint8),但也无济于事。

//template is already binary
//edited: all the code
img = cv2.imread('img/img.png')
template = cv2.imread('template-match/template.png')
img_roi=img[310:1060,510:1430]
img_gray = cv2.cvtColor(img_roi,cv2.COLOR_BGR2GRAY)
afterEnhance = cv2.GaussianBlur(img_gray, (7, 7), 0)
afterEnhance=cv2.equalizeHist(afterEnhance)
_,th1=cv2.threshold(afterEnhance,55,255,cv2.THRESH_BINARY)
result = cv2.matchTemplate(th1, template,cv2.TM_CCOEFF)

1 个答案:

答案 0 :(得分:1)

您似乎已经知道了:该模板具有3个颜色通道,而img被转换为灰度并且只有一个通道。
您可以直接使用
将模板图像加载为灰度图像 template = cv2.imread('template-match/template.png',0)