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