91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

利用OpenCV和Python實現查找圖片差異

發布時間:2020-09-26 02:55:01 來源:腳本之家 閱讀:486 作者:flyfish1986 欄目:開發技術

使用OpenCV和Python查找圖片差異

flyfish

方法1 均方誤差的算法(Mean Squared Error , MSE)

利用OpenCV和Python實現查找圖片差異

下面的一些表達與《TensorFlow - 協方差矩陣》式子表達式一樣的

利用OpenCV和Python實現查找圖片差異

擬合 誤差平方和( sum of squared errors)

residual sum of squares (RSS), also known as the sum of squared residuals (SSR) or the sum of squared errors of prediction (SSE),
also known as 就我們所說的
RSS, SSR ,SSE表達的是一個意思

利用OpenCV和Python實現查找圖片差異

def mse(imageA, imageB):
 # the 'Mean Squared Error' between the two images is the
 # sum of the squared difference between the two images;
 # NOTE: the two images must have the same dimension
 err = np.sum((imageA.astype("float") - imageB.astype("float")) ** 2)
 err /= float(imageA.shape[0] * imageA.shape[1])

 # return the MSE, the lower the error, the more "similar"
 # the two images are
 return err

方法2 SSIM

​structural similarity index measurement (SSIM) system

一種衡量兩幅圖像結構相似度的新指標,其值越大越好,最大為1。

新建一個Python文件,命名為 image_diff.py

原文

Image Difference with OpenCV and Python

原理

利用OpenCV和Python實現查找圖片差異

根據參數讀取兩張圖片并轉換為灰度:

使用SSIM計算兩個圖像之間的差異,這種方法已經在scikit-image 庫中實現

在兩個圖像之間的不同部分繪制矩形邊界框。

代碼如下 已編譯通過

from skimage.measure import compare_ssim
#~ import skimage as ssim
import argparse
import imutils
import cv2

# construct the argument parse and parse the arguments
ap = argparse.ArgumentParser()
ap.add_argument("-f", "--first", required=True,
 help="first input image")
ap.add_argument("-s", "--second", required=True,
 help="second")
args = vars(ap.parse_args())
# load the two input images
imageA = cv2.imread(args["first"])
imageB = cv2.imread(args["second"])
'''
imageA = cv2.imread("E:\\1.png")
imageB = cv2.imread("E:\\2.png")
'''
# convert the images to grayscale
grayA = cv2.cvtColor(imageA, cv2.COLOR_BGR2GRAY)
grayB = cv2.cvtColor(imageB, cv2.COLOR_BGR2GRAY)

# compute the Structural Similarity Index (SSIM) between the two
# images, ensuring that the difference image is returned
#​structural similarity index measurement (SSIM) system一種衡量兩幅圖像結構相似度的新指標,其值越大越好,最大為1。

(score, diff) = compare_ssim(grayA, grayB, full=True)
diff = (diff * 255).astype("uint8")
print("SSIM: {}".format(score))

# threshold the difference image, followed by finding contours to
# obtain the regions of the two input images that differ
thresh = cv2.threshold(diff, 0, 255,
 cv2.THRESH_BINARY_INV | cv2.THRESH_OTSU)[1]
cnts = cv2.findContours(thresh.copy(), cv2.RETR_EXTERNAL,
 cv2.CHAIN_APPROX_SIMPLE)
cnts = cnts[0] if imutils.is_cv2() else cnts[1]

# loop over the contours
for c in cnts:
 # compute the bounding box of the contour and then draw the
 # bounding box on both input images to represent where the two
 # images differ
 (x, y, w, h) = cv2.boundingRect(c)
 cv2.rectangle(imageA, (x, y), (x + w, y + h), (0, 0, 255), 2)
 cv2.rectangle(imageB, (x, y), (x + w, y + h), (0, 0, 255), 2)

# show the output images
cv2.imshow("Original", imageA)
cv2.imshow("Modified", imageB)
cv2.imshow("Diff", diff)
cv2.imshow("Thresh", thresh)
cv2.waitKey(0)

使用方法

python image_diff.py –first original.png –second images/modified.png 

如果不想使用參數將參數代碼部分直接變成

imageA = cv2.imread(“E:\1.png”) 
imageB = cv2.imread(“E:\2.png”)

以上這篇利用OpenCV和Python實現查找圖片差異就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

元谋县| 通道| 察雅县| 武隆县| 南岸区| 侯马市| 香河县| 永寿县| 云浮市| 大理市| 衡阳县| 拜城县| 遵义县| 承德市| 炉霍县| 景宁| 全南县| 米易县| 旬阳县| 兰坪| 呼和浩特市| 烟台市| 万州区| 伊川县| 铜梁县| 辉县市| 隆回县| 太和县| 长宁区| 利辛县| 河池市| 沧州市| 卢龙县| 五原县| 株洲市| 扬州市| 临猗县| 临桂县| 博湖县| 黎平县| 阿城市|