-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathimage_loader.py
53 lines (43 loc) · 1.29 KB
/
image_loader.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
from PIL import Image, ImageOps
from math import sqrt
import subprocess
IMG_NAME = 'play_ship1.png'
IMG_NAME = 'temp.png'
subprocess.check_output('rm -rf '+IMG_NAME.split('.')[0]+'.bin',shell=1)
colors = Image.open('colors.png')
colors_ = colors.load()
colors_array = []
for y in range(colors.height):
for x in range(colors.width):
colors_array.append(colors_[x, y])
img = Image.open(IMG_NAME)
img = img.resize((20, 20))
img = ImageOps.flip(img)
img.show()
img_ = img.load()
# for x in range(img.width):
# for y in range(img.height):
# print(img_[x,y])
def rms(a, b):
c = [0, 0, 0]
for i in range(3):
c[i] = (a[i]-b[i])**2
c = sum(c)/len(c)
return sqrt(c)
out = bytearray()
#x = img.width - 1 - x
for y in range(img.height):
for x in range(img.width):
# y = img.height - 1 - y
smallest = 0xFFFFFFF
smallest_ind = None
for i in range(colors.height * colors.width):
rms_ = rms(img_[x, y], colors_array[i])
if smallest > rms_:
smallest = rms_
smallest_ind = i
print(x, y, smallest_ind)
#out.append(smallest_ind)
with open(IMG_NAME.split('.')[0]+'.bin', 'ab') as f:
w = bytearray([smallest_ind&0xFF])
f.write(bytearray(w))