python如何判断文件夹内的重复图片
python如何判断文件夹内的重复图片
步骤
1、首先将所有的图片按照图片大小(byte)进行分类,然后再进行分类比较。
2、重复图片很有可能连续出现(因为重复图片大小相同)
如果要判断文件夹中是否有相同的图片,则需要对文件夹中的所有图片进行分类,并逐一判断两张图片是否相同。
如果文件夹中有1000张图片,则第一张图片需要与剩余的999张图片进行比较,第二张图片需要与剩余的998张图片进行比较,第三张图片需要与剩余的997张图片进行比较,以此类推。
实例
if__name__=='__main__':
load_path='E:\\测试图片集(未去重)'#要去重的文件夹
save_path='E:\\测试图片集(重复照片)'#空文件夹,用于存储检测到的重复的照片
os.makedirs(save_path,exist_ok=True)
#获取图片列表file_map,字典{文件路径filename:文件大小image_size}
file_map={}
image_size=0
#遍历filePath下的文件、文件夹(包括子目录)
forparent,dirnames,filenamesinos.walk(load_path):
#fordirnameindirnames:
#print('parentis%s,dirnameis%s'%(parent,dirname))
forfilenameinfilenames:
#print('parentis%s,filenameis%s'%(parent,filename))
#print('thefullnameofthefileis%s'%os.path.join(parent,filename))
image_size=os.path.getsize(os.path.join(parent,filename))
file_map.setdefault(os.path.join(parent,filename),image_size)
#获取的图片列表按文件大小image_size排序
file_map=sorted(file_map.items(),key=lambdad:d[1],reverse=False)
file_list=[]
forfilename,image_sizeinfile_map:
file_list.append(filename)
#取出重复的图片
file_repeat=[]
forcurrIndex,filenameinenumerate(file_list):
dir_image1=file_list[currIndex]
dir_image2=file_list[currIndex+1]
result=比较两张图片是否相同(dir_image1,dir_image2)
if(result=="两张图相同"):
file_repeat.append(file_list[currIndex+1])
print("\n相同的图片:",file_list[currIndex],file_list[currIndex+1])
else:
print('\n不同的图片:',file_list[currIndex],file_list[currIndex+1])
currIndex+=1
ifcurrIndex>=len(file_list)-1:
break
#将重复的图片移动到新的文件夹,实现对原文件夹降重
forimageinfile_repeat:
shutil.move(image,save_path)
print("正在移除重复照片:",image)
以上就是python判断文件夹内的重复图片的方法,希望对大家有所帮助。更多Python学习教程请关注IT培训机构:千锋教育。
相关推荐HOT
更多>>pythonPython的应用领域
Python的应用领域主要有如下几个。Web应用开发Python经常被用于Web开发。例如,通过mod_wsgi模块,Apache可以运行用Python编写的Web程序。Pytho...详情>>
2023-11-08 23:44:23pythoncollections.Counter的计数
pythoncollections.Counter的计数1、说明Counter类型中的计数器还支持负值。通过简单的+-作为Counter类型对象的前缀,就可以实现正负计数过滤。...详情>>
2023-11-08 22:44:16python包的导入方式有几种
python包的导入方式有几种本文教程操作环境:windows7系统、Python3.9.1,DELLG3电脑。1、from...import导入frompackageimportmodule1,mo详情>>
2023-11-08 21:33:52python继承的特征有哪些?
python继承的特征有哪些?本文教程操作环境:windows7系统、Python3.9.1,DELLG3电脑。1、概念继承就是一个类可以获得另外一个类中的成员属性和...详情>>
2023-11-08 19:55:46热门推荐
pythonPython的应用领域
沸python的三引号怎么输入
热pythoncollections.Counter的计数
热python使用Dockerfile构建镜像
新python包的导入方式有几种
pythonplot()函数的基本介绍
pythonAllure框架是什么?
python继承的特征有哪些?
python类方法的注意点
pythonpickle模块在Python的函数使用
python列表运算详解
pythonautoenv怎么用
pythonpyqt5复选框怎么用?
python如何对Python数据表进行检查