-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenerate_cmaps.py
55 lines (46 loc) · 2.16 KB
/
generate_cmaps.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
# Copyright (c) 2021 John Champagne (johnchampagne97@gmail.com)
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
# generate_cmaps.py
# Generates a .c file with all of the default color maps in matplotlib
import numpy as np
import matplotlib.pyplot as plt
from matplotlib import cm
color_names = plt.colormaps()
fout = open("all_cmaps.c", "w")
for color_name in color_names:
viridis = cm.get_cmap(color_name)
def get_color(x):
return tuple([int(np.round(y*255.0)) for y in viridis(x)[0:3]])
fout.write("uint8_t cmap_" + color_name + "[256][3] = { \n")
for i in range(256):
new_line = True if i % 5 == 0 else False
c = get_color(i / 255.0)
fout.write((" " if new_line else "") + "{")
fout.write("{},{},{}".format(c[0],c[1],c[2]))
fout.write("}")
if i != 255:
new_line = True if (i+1) % 5 == 0 else False
if new_line:
fout.write(",\n")
else:
fout.write(",")
else:
fout.write("};\n\n")
fout.close()