forked from commaai/comma10k
-
Notifications
You must be signed in to change notification settings - Fork 0
/
viewer.py
executable file
·103 lines (93 loc) · 2.77 KB
/
viewer.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
#!/usr/bin/env python3
import os
import sys
import numpy as np
from tqdm import tqdm
from PIL import Image
NOSEGS = os.getenv("NOSEGS") is not None
def get_colormap(five=True):
f32 = lambda x: (x % 256, x//256 % 256, x//(256*256) % 256)
if five:
key = [2105408, 255, 0x608080, 6749952, 16711884]
else:
key = [0, 0xc4c4e2, 2105408, 255, 0x608080, 6749952, 16737792, 16711884]
return {i: f32(key[i]) for i in range(len(key))}
def gray_to_color(image, five=True):
W,H = image.shape[0:2]
colormap = get_colormap(five)
c = image.ravel()
output = np.asarray([colormap[i] for i in c])
output = output.reshape((W, H, 3)).astype(np.uint8)
return output
def fix(im):
dat = np.array(im)
if im.mode == "P":
# palette image
pp = np.array(im.getpalette()).reshape((-1, 3)).astype(np.uint8)
sh = dat.shape
dat = pp[dat.flatten()].reshape(list(sh)+[3])
if dat.shape[2] != 3:
# remove alpha
dat = dat[:, :, 0:3]
return dat
if __name__ == "__main__":
from tools.window import Window
import pygame
win = Window(1164, 874)
lst = sorted(os.listdir("imgs/"))
if len(sys.argv) > 1:
if os.path.isfile(sys.argv[1]):
lst = open(sys.argv[1]).read().replace("masks/", "").strip().split("\n")
else:
#lst = list(filter(lambda x: x.startswith(("%04d" % int(sys.argv[1]))), lst))
lst = lst[int(sys.argv[1]):]
if os.getenv("ENTSORT") is not None:
szz = []
for x in lst:
sz = os.stat("segs/"+x+".npz").st_size
szz.append((sz, x))
lst = [x[1] for x in sorted(szz, reverse=True)]
print("")
print("KEYBOARD COMMANDS:")
print("right arrow = step forward")
print("left arrow = step back")
print("up arrow = raise mask opacity")
print("down arrow = lower mask opacity")
print("m = show/hide mask")
print("q or escape = quit")
print("")
i = 0
o = 2
m = True
p = tqdm(total=len(lst))
while True:
x = lst[i]
p.set_description(x)
p.n = (i % len(lst)) + 1
p.refresh()
while True:
ii = np.array(Image.open("imgs/"+x))
if not NOSEGS and os.path.isfile("masks/"+x) and m:
segi = fix(Image.open("masks/"+x))
# blend
ii = ii*((10-o)/10) + segi*(o/10)
win.draw(ii)
kk = win.getkey()
if kk == ord("s"):
if not os.path.isfile("scale/response/%s" % x):
print("submitting to scaleapi")
os.system("scale/submit.sh "+x)
else:
print("ALREADY SUBMITTED!")
elif kk == ord('m'):
m = not m
elif kk == pygame.locals.K_UP:
o = min(10, o+1)
elif kk == pygame.locals.K_DOWN:
o = max(0, o-1)
elif kk in [pygame.locals.K_RIGHT, ord(' '), ord('\n'), ord('\r')]:
i += 1
break
elif kk == pygame.locals.K_LEFT:
i += -1
break