-
Notifications
You must be signed in to change notification settings - Fork 0
/
bom.py
74 lines (69 loc) · 2.79 KB
/
bom.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
from os import path
from sys import argv
from PIL import Image
from collections import Counter
from compress_pickle import load
import matplotlib.pyplot as plt
import settings as sel
import functions as fun
if fun.isNotebook():
(fPath, fName) = (
'/Users/sanchez.hmsc/Documents/SyncMega/LegoOptimizer/',
'megaman.png'
)
else:
(fPath, fName) = (argv[1], argv[2])
###############################################################################
# Load image and decoded data
###############################################################################
dFName = path.join(fPath, fName.split('.png')[0])+'_Lego.png'
img = Image.open(dFName)
# Read decoded data -----------------------------------------------------------
dFName = path.join(fPath, fName.split('.png')[0])+'_Decoded.pkl'
decoded = load(dFName)
###############################################################################
# Get colors
###############################################################################
cSet = set()
for row in decoded:
cSet = cSet.union(set([i[0] for i in row]))
###############################################################################
# Get colors blocks
###############################################################################
cDict = {i: [] for i in sorted(list(cSet))}
row = decoded[0]
for row in decoded:
# rowDict = {c: v for (c, v) in row}
rowDict = {}
rowC = list(set([i[0] for i in row]))
for col in rowC:
rowDict[col] = fun.flatten([i[1] for i in row if i[0]==col])
for clr in rowDict.keys():
cDict[clr].extend(rowDict[clr])
###############################################################################
# Get color blocks counts
###############################################################################
cList = list(cDict.keys())
cCounts = {col: dict(Counter(sorted(cDict[col]))) for col in cList}
# Patch missing blocks index --------------------------------------------------
# for k in list(cCounts.keys()):
# try: cCounts[k]['M'] = cCounts[k].pop(-1)
# except: continue
###############################################################################
# Generate BOM image
###############################################################################
bom = fun.genColorCounts(
cCounts, 250, img.size[1], img.size, upscale=sel.USER_SEL['scaler']
)
dFName = path.join(fPath, fName.split('.png')[0])+'_BOM.png'
plt.savefig(
dFName, bbox_inches='tight', pad_inches=0, facecolor='w'
)
plt.close('all')
###############################################################################
# Concatenate images
###############################################################################
imgBOM = Image.open(dFName).convert('RGB')
ccat = fun.hConcat(img, imgBOM)
dFName = path.join(fPath, fName.split('.png')[0])+'_FNL.png'
ccat.save(dFName)