opencv_判断两张图片是否相同

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了opencv_判断两张图片是否相同相关的知识,希望对你有一定的参考价值。

QQ:231469242

 

pip install opencv

如果找不到版本,去非官方下载opencv第三方包http://www.lfd.uci.edu/~gohlke/pythonlibs/

 

下载好文件放入C:/Anaconda3/Scripts 文件夹, 然后 用pip install opencv安装

技术分享

# -*- coding: utf-8 -*-
"""
Created on Sat Dec 24 10:42:10 2016

@author: daxiong
"""

import cv2
import numpy as np
#import os

file1= "1.png"
file2="3.png"

image1 = cv2.imread(file1)
image2 = cv2.imread(file2)
difference = cv2.subtract(image1, image2)
result = not np.any(difference) #if difference is all zeros it will return False

if result is True:
     print("两张图片一样")
else:
     cv2.imwrite("result.jpg", difference)
     print ("两张图片不一样")

 技术分享

 

 

 

技术分享

 

以上是关于opencv_判断两张图片是否相同的主要内容,如果未能解决你的问题,请参考以下文章

Python脚本:删除文件夹下的重复图片,实现图片去重

比较两张相似的图片得到相似度值

[java]用md5来判断两个文件是否完全相同

OpenCV读取图片判断读取是否成功显示图片的代码(C++代码和Python代码)

opencv报错——(mtype == CV_8U || mtype == CV_8S)

opencv报错——(mtype == CV_8U || mtype == CV_8S)