例如,当使用gocv包时,可以执行图像内模式的模板匹配。该包还提供MinMaxLoc函数来检索矩阵内最小值和最大值的位置。
然而,在下面的 python 示例中,作者使用numpy.Where对矩阵进行阈值处理并获取多个最大值的位置。python zip函数用于将值粘合在一起,因此它们就像一个切片[][2]int
,内部切片是找到的匹配项的 xs 和 ys。
该语法loc[::-1]
反转数组。
中的星号运算符zip(*loc..)
用于解压提供给 zip 的切片。
import cv2 as cv
import numpy as np
from matplotlib import pyplot as plt
img_rgb = cv.imread('mario.png')
img_gray = cv.cvtColor(img_rgb, cv.COLOR_BGR2GRAY)
template = cv.imread('mario_coin.png',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)
如何np.where在 Go 中实现相同的算法来获取应用阈值后的多个位置?
翻翻过去那场雪
慕哥6287543
相关分类