-
Notifications
You must be signed in to change notification settings - Fork 179
/
palette.py
54 lines (43 loc) · 1.56 KB
/
palette.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
import argparse
import colorsys
import matplotlib.pyplot as plt
import numpy as np
from skimage import color, io
from skimage.transform import rescale
from sklearn.cluster import KMeans
def palette(img, n=10, r=1, o=False):
img = img[:, :, (0, 1, 2)]
img = rescale(img, (r, r, 1), anti_aliasing=True)
lab = color.rgb2lab(img).reshape(-1, 3)
km = KMeans(n_clusters=n, random_state=0).fit(lab)
cc = km.cluster_centers_.reshape(-1, 1, 3).transpose((1, 0, 2))
if o:
rgb_x = color.lab2rgb(cc)
initial_colors = list(rgb_x[0])
initial_colors.sort(key=lambda c: colorsys.rgb_to_hsv(*c))
return np.asarray([initial_colors])
return color.lab2rgb(cc)
def p2h(p):
r, g, b = np.round(p).astype(int)
return f"#{r:02X}{g:02X}{b:02X}"
def main():
parser = argparse.ArgumentParser()
parser.add_argument("img")
parser.add_argument("out")
parser.add_argument("-n", default=10, type=int, help="The number of colors for the palette")
parser.add_argument("-r", default=1, type=float, help="Rescale factor")
parser.add_argument("-o", default=False, action='store_true')
args = parser.parse_args()
img = io.imread(args.img)
p = palette(img, n=args.n, r=args.r, o=args.o)
h = [p2h(rgb * 255) for rgb in p[0]]
ax = plt.axes()
ax.imshow(img)
ax.set_axis_off()
axin = ax.inset_axes([0.2, 0.2, 0.6, 0.2])
axin.set_axis_off()
axin.imshow(p, aspect="auto")
plt.savefig(args.out, dpi=800, pad_inches=0, bbox_inches="tight")
print("\n".join(h))
if __name__ == "__main__":
main()