-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgetBinFile.py
78 lines (63 loc) · 1.98 KB
/
getBinFile.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
import PIL
from PIL import Image
import numpy as np
import os
import matplotlib.pyplot as plt
# data directory
input = os.getcwd() + "/data"
output = os.getcwd() + "/data/data.bin"
imageSize = 32
imageDepth = 3
debugEncodedImage = False
# show given image on the window for debug
def showImage(r, g, b):
temp = []
for i in range(len(r)):
temp.append(r[i])
temp.append(g[i])
temp.append(b[i])
show = np.array(temp).reshape(imageSize, imageSize, imageDepth)
plt.imshow(show, interpolation='nearest')
plt.show()
# convert to binary bitmap given image and write to law output file
def writeBinaray(outputFile, imagePath, label):
img = Image.open(imagePath)
img = img.resize((imageSize, imageSize), PIL.Image.ANTIALIAS)
img = (np.array(img))
r = img[:,:,0].flatten()
g = img[:,:,1].flatten()
b = img[:,:,2].flatten()
label = [label]
out = np.array(list(label) + list(r) + list(g) + list(b), np.uint8)
outputFile.write(out.tobytes())
# if you want to show the encoded image. set up 'debugEncodedImage' flag
if debugEncodedImage:
showImage(r, g, b)
subDirs = os.listdir(input)
numberOfClasses = len(input)
try:
os.remove(output)
except OSError:
pass
outputFile = open(output, "ab")
label = -1
totalImageCount = 0
labelMap = []
for subDir in subDirs:
subDirPath = os.path.join(input, subDir)
# filter not directory
if not os.path.isdir(subDirPath):
continue
imageFileList = os.listdir(subDirPath)
label += 1
print("writing %3d images, %s" % (len(imageFileList), subDirPath))
totalImageCount += len(imageFileList)
labelMap.append([label, subDir])
for imageFile in imageFileList:
imagePath = os.path.join(subDirPath, imageFile)
writeBinaray(outputFile, imagePath, label)
outputFile.close()
print("Total image count: ", totalImageCount)
print("Succeed, Generate the Binary file")
print("You can find the binary file : ", output)
print("Label MAP: ", labelMap)