1
我正在編寫一個腳本來查找更大圖像中的圖像剪切位置(類似於here中描述的問題)。爲此,我正在使用match_template
,它是skimage
的一部分。我也想看看相關值(我想它應該是一個矩陣,並且match_template
取最大值);我怎麼能得到它們?來自match_template的相關值
這是我使用的代碼:
cutout = np.loadtxt(filename_cutout.txt)
image = np.loadtxt(filename_image.txt)
array_cutout = np.array(cutout)
array_image = np.array(image)
result = match_template(image, cutout)
ij = np.unravel_index(np.argmax(result), result.shape)
x, y = ij[::-1]
ran = array_cutout.shape
ran_y = ran[1]
ran_x = ran[0]
x_center = x + (ran_x/2)
y_center = y + (ran_y/2)