update,
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
# Compute pixel-by-pixel difference and return the sum
|
||||
import cv2 as cv
|
||||
|
||||
|
||||
def compareImgs(img1, img2):
|
||||
|
||||
# img2 = cv.resize(img2, (img1.shape[1], img1.shape[0]))
|
||||
diff = cv.absdiff(img1, img2)
|
||||
return diff.sum()
|
Reference in New Issue
Block a user