-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchannels.py
47 lines (40 loc) · 1.13 KB
/
channels.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
from scipy.misc import imresize, imsave
from matplotlib.image import imread
import argparse
import os
import numpy as np
if __name__ == '__main__':
ap = argparse.ArgumentParser()
ap.add_argument("-d", "--dir", required=True,help="dir with files")
args = vars(ap.parse_args())
dir_to_load = args["dir"]
filepaths = []
for dir_, _, files in os.walk(dir_to_load):
for fileName in files:
relDir = os.path.relpath(dir_, dir_to_load)
relFile = os.path.join(relDir, fileName)
filepaths.append(dir_to_load + "/" + relFile)
black_and_white = []
opaq = []
for i, fp in enumerate(filepaths):
img = imread(fp)
if len(img.shape) is not 3:
print(fp)
print(img.shape)
black_and_white.append(fp)
elif len(img.shape) == 3 and img.shape[-1] != 3:
print(fp)
print(img.shape)
opaq.append(fp)
for i in black_and_white:
img = imread(i)
stacked_img = np.stack((img,)*3,-1)
imsave( "./" + str(i) + "_conv" + ".png", stacked_img)
for i in opaq:
img = imread(i)
cleaned_img = img[...,:3]
imsave( "./" + str(i) + "_3chan" + ".png", cleaned_img)
for i in opaq:
os.remove(i)
for i in black_and_white:
os.remove(i)