這兩張圖片的計算距離python
import cv2 import numpy as np def get_image_deviation(): ''' 計算slideImg.png 與 slideImg.png 位移的距離 ''' print(sys.path) slideImg = cv2.imread('圖片路徑1') bgImg = cv2.imread(f'圖片路徑2') result = cv2.matchTemplate(slideImg, bgImg, cv2.TM_CCOEFF_NORMED) y, x = np.unravel_index(result.argmax(), result.shape) return x
cv2.imread中的參數絕對不能有中文路徑
ide