#remove bad images
#encoding:utf-8
## Used to find dirty pictures
import os
import re
import sys
from skimage import io,transform
from PIL import Image
# from PIL import ImageFile
# ImageFile.LOAD_TRUNCATED_IMAGES = True
print(1, "Warning:")
print(Image.MAX_IMAGE_PIXELS)
print(2, "No warning:")
Image.MAX_IMAGE_PIXELS = None
print(Image.MAX_IMAGE_PIXELS)
input_path = sys.argv[1]
remove_list = []
two_dimension = []
not_three_dimension = []
truncated_image = []
file_list = os.listdir(input_path)
for index,file_name in enumerate(file_list):
file_path = os.path.join(input_path,file_name)
print("is reading: ",index, file_path)
if re.findall(".jpg",file_path):
try:
img_file2 = io.imread(file_path)
if (len(img_file2.shape) == 2):
print("two dimension", file_name)
print("two dimension", img_file2.shape)
two_dimension.append(file_name)
elif (len(img_file2.shape) != 3):
print("not three dimension", file_name)
print("not three dimension", img_file2.shape)
not_three_dimension.append(file_name)
elif (img_file2.shape[0]*img_file2.shape[1]*img_file2.shape[2] >= 178956970) or (img_file2.shape[2] > 3):
print("images over pixels or not RGB", file_name)
print("images over pixels or not RGB", img_file2.shape)
remove_list.append(file_name)
except Exception as e:
truncated_image.append(file_name)
print("image is truncated", file_name)
print("image is truncated", img_file2.shape)
print("truncated_image", truncated_image)
print("two_dimension", two_dimension)
print("not_three_dimension", not_three_dimension)
print("remove_list", remove_list)
for remove_file_name in two_dimension :
remove_file_path = os.path.join(input_path, remove_file_name)
os.remove(remove_file_path)
print("rm " + remove_file_path)
for remove_file_name in not_three_dimension:
remove_file_path = os.path.join(input_path, remove_file_name)
os.remove(remove_file_path)
print("rm " + remove_file_path)
for remove_file_name in remove_list:
remove_file_path = os.path.join(input_path, remove_file_name)
os.remove(remove_file_path)
print("rm " + remove_file_path)
for remove_file_name in truncated_image:
remove_file_path = os.path.join(input_path, remove_file_name)
os.remove(remove_file_path)
print("rm " + remove_file_path)
remove bad images
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
- 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來帕识,“玉大人泛粹,你說我怎么就攤上這事“沽疲” “怎么了晶姊?”我有些...
- 文/不壞的土叔 我叫張陵,是天一觀的道長伪货。 經(jīng)常有香客問我们衙,道長,這世上最難降的妖魔是什么碱呼? 我笑而不...
- 正文 為了忘掉前任蒙挑,我火速辦了婚禮,結(jié)果婚禮上愚臀,老公的妹妹穿的比我還像新娘脆荷。我一直安慰自己,他們只是感情好懊悯,可當(dāng)我...
- 文/花漫 我一把揭開白布蜓谋。 她就那樣靜靜地躺著,像睡著了一般炭分。 火紅的嫁衣襯著肌膚如雪桃焕。 梳的紋絲不亂的頭發(fā)上,一...
- 文/蒼蘭香墨 我猛地睜開眼胰坟,長吁一口氣:“原來是場噩夢啊……” “哼因篇!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起笔横,我...
- 序言:老撾萬榮一對(duì)情侶失蹤竞滓,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后吹缔,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體商佑,經(jīng)...
- 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
- 正文 我和宋清朗相戀三年厢塘,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了茶没。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
- 正文 年R本政府宣布,位于F島的核電站讥蔽,受9級(jí)特大地震影響涣易,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜冶伞,卻給世界環(huán)境...
- 文/蒙蒙 一新症、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧响禽,春花似錦徒爹、人聲如沸。這莊子的主人今日做“春日...
- 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至侯繁,卻和暖如春胖喳,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背贮竟。 一陣腳步聲響...
- 正文 我出身青樓技健,卻偏偏與公主長得像写穴,于是被迫代替她去往敵國和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子雌贱,可洞房花燭夜當(dāng)晚...
推薦閱讀更多精彩內(nèi)容
- LeetCode 26. Remove Duplicates from Sorted Array Given a ...
- 在 CSS 中啊送,選擇器是一種模式,用于選擇需要添加樣式的元素帽芽。css中主要有一下幾種選擇器: 元素選擇器類選擇器I...