-
Notifications
You must be signed in to change notification settings - Fork 0
/
grayscaling.py
52 lines (40 loc) · 1.29 KB
/
grayscaling.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
import glob
from os import getcwd
from os.path import join
from anshitsu.retouch import Retouch
from PIL import Image
def grayscaling(path: str):
"""
grayscaling 画像をグレースケール化する
Args:
path (str): ファイルパス
Returns:
Image: 与えられたパスの画像をグレースケール化したもの
"""
image = Image.open(path)
retouch = Retouch(image, grayscale=True)
gray_image = retouch.process()
return gray_image
def bundle_grayscaling(dir: str):
"""
bundle_grayscaling 指定されたディレクトリ内のGIF、PNG、JPEGファイルをグレースケール化する
Args:
dir (str): 画像を格納したディレクトリ
"""
path_list: list[str] = []
for ext in ('*.gif', '*.png', '*.jpg', '*.jpeg'):
path_list.extend(glob.glob(join(dir, ext)))
for i in path_list:
try:
img = grayscaling(i)
img.save(i)
except IndexError:
print("以下のファイルを処理するときにエラーが発生しました。")
print(i)
finally:
print("ファイル処理が完了しました。")
print(i)
return
image_path = getcwd() + "/images"
print(image_path)
bundle_grayscaling(image_path)