使用cv2.resize按比例缩放图片

pacent = round(float(256/float(width)),2)


img1 = cv2.resize(img1,None,fx=pacent,fy=pacent,interpolation=cv2.INTER_AREA)
img2 = cv2.resize(img2,None,fx=pacent,fy=pacent,interpolation=cv2.INTER_AREA)