您好,登錄后才能下訂單哦!
這篇文章給大家介紹使用python怎么刪除文件夾中的重復(fù)圖片,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對(duì)大家能有所幫助。
要查找重復(fù)的圖片,必然繞不開判斷兩張圖片是否相同。判斷兩張圖片簡(jiǎn)單呀!圖片可以看成數(shù)組,比較兩個(gè)數(shù)組是否相等不就行了。但是這樣做太過簡(jiǎn)單粗暴,因?yàn)閮蓚€(gè)數(shù)組的每個(gè)元素都要一一比較,效率很低。為了盡量避免兩個(gè)龐大的數(shù)組比較:
先進(jìn)行兩張圖片的大小(byte)比較,若大小不相同,則兩張圖片不相同;
在兩張圖片的大小相同的前提下,進(jìn)行兩張圖片的尺寸(長(zhǎng)和寬)比較,若尺寸不相同,則兩張不相同;
在兩張圖片的尺寸相同的前提下,進(jìn)行兩張圖片的內(nèi)容(即數(shù)組元素)比較,若內(nèi)容不相同,則圖片不相同;
這樣,當(dāng)圖片大小或圖片尺寸不相同的時(shí)候,便認(rèn)為兩張圖片不同,可以省去比較數(shù)組元素的部分,效率up~
import shutil import numpy as np from PIL import Image import os def 比較圖片大小(dir_image1, dir_image2): with open(dir_image1, "rb") as f1: size1 = len(f1.read()) with open(dir_image2, "rb") as f2: size2 = len(f2.read()) if(size1 == size2): result = "大小相同" else: result = "大小不同" return result def 比較圖片尺寸(dir_image1, dir_image2): image1 = Image.open(dir_image1) image2 = Image.open(dir_image2) if(image1.size == image2.size): result = "尺寸相同" else: result = "尺寸不同" return result def 比較圖片內(nèi)容(dir_image1, dir_image2): image1 = np.array(Image.open(dir_image1)) image2 = np.array(Image.open(dir_image2)) if(np.array_equal(image1, image2)): result = "內(nèi)容相同" else: result = "內(nèi)容不同" return result def 比較兩張圖片是否相同(dir_image1, dir_image2): # 比較兩張圖片是否相同 # 第一步:比較大小是否相同 # 第二步:比較長(zhǎng)和寬是否相同 # 第三步:比較每個(gè)像素是否相同 # 如果前一步不相同,則兩張圖片必不相同 result = "兩張圖不同" 大小 = 比較圖片大小(dir_image1, dir_image2) if(大小 == "大小相同"): 尺寸 = 比較圖片尺寸(dir_image1, dir_image2) if(尺寸 == "尺寸相同"): 內(nèi)容 = 比較圖片內(nèi)容(dir_image1, dir_image2) if(內(nèi)容 == "內(nèi)容相同"): result = "兩張圖相同" return result
若要判斷文件夾內(nèi)是否有和圖片A相同的圖片,則需要遍歷文件夾內(nèi)所有圖片,挨個(gè)判斷兩個(gè)圖片是否相同。若文件夾有1000張圖片,那么第1張圖片需要與剩下的999張圖片作比較,第2張圖片需要與剩下的998張圖片作比較,第3張需要與剩下的997張圖片作比較,以此類推。在此程序中的做法是,先對(duì)所有圖片按圖片大小(byte)排序,然后再執(zhí)行遍歷比較。這樣做的結(jié)果是:重復(fù)圖片很大概率會(huì)連著出現(xiàn)(因?yàn)橹貜?fù)圖片大小相同)
if __name__ == '__main__': load_path = 'E:\\測(cè)試圖片集(未去重)' # 要去重的文件夾 save_path = 'E:\\測(cè)試圖片集(重復(fù)照片)' # 空文件夾,用于存儲(chǔ)檢測(cè)到的重復(fù)的照片 os.makedirs(save_path, exist_ok=True) # 獲取圖片列表 file_map,字典{文件路徑filename : 文件大小image_size} file_map = {} image_size = 0 # 遍歷filePath下的文件、文件夾(包括子目錄) for parent, dirnames, filenames in os.walk(load_path): # for dirname in dirnames: # print('parent is %s, dirname is %s' % (parent, dirname)) for filename in filenames: # print('parent is %s, filename is %s' % (parent, filename)) # print('the full name of the file is %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=lambda d: d[1], reverse=False) file_list = [] for filename, image_size in file_map: file_list.append(filename) # 取出重復(fù)的圖片 file_repeat = [] for currIndex, filename in enumerate(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 if currIndex >= len(file_list)-1: break # 將重復(fù)的圖片移動(dòng)到新的文件夾,實(shí)現(xiàn)對(duì)原文件夾降重 for image in file_repeat: shutil.move(image, save_path) print("正在移除重復(fù)照片:", image)
若文件夾下有10張圖片A、5張圖片B、1張圖片C,程序運(yùn)行結(jié)束后,該文件夾下剩余1張圖片A、1張圖片B、1張圖片C;其他的圖片移動(dòng)到 save_path 指定的文件夾下。
程序代碼可以直接復(fù)制使用,需要修改 load_path 和 save_path 參數(shù);
保證 load_path 文件夾都為圖片格式(.jpg .png .jpeg)的文件類型,不可以有其他格式的文件(例如.mp4);請(qǐng)先用資源管理器處理文件夾,大佬直接修改代碼讀取文件夾下指定類型的文件;
Python是一種跨平臺(tái)的、具有解釋性、編譯性、互動(dòng)性和面向?qū)ο蟮哪_本語言,其最初的設(shè)計(jì)是用于編寫自動(dòng)化腳本,隨著版本的不斷更新和新功能的添加,常用于用于開發(fā)獨(dú)立的項(xiàng)目和大型項(xiàng)目。
關(guān)于使用python怎么刪除文件夾中的重復(fù)圖片就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。