forked from Priyanka-M96/Hand_pose_DKE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gui.py
41 lines (33 loc) · 1.53 KB
/
gui.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
import cv2
import numpy as np
from random import randint
def drawInferences(values, names=['', '', '', '', '', '']):
nb_classes = len(values)
left_margin = 150
margin = 50
thickness = 40
font = cv2.FONT_HERSHEY_SIMPLEX
fontScale = 1
fontColor = (255,255,255)
lineType = 2
blank = np.zeros((350,600,3), np.uint8)
for i in range(nb_classes):
if(values[i] > 0.7):
cv2.rectangle(blank, (left_margin, margin + int(margin*i)), (left_margin + int(values[i]*200), margin + thickness + int(margin*i)), (0,255,0), -1)
else:
cv2.rectangle(blank, (left_margin, margin + int(margin*i)), (left_margin + int(values[i]*200), margin + thickness + int(margin*i)), (255,0,0), -1)
cv2.putText(blank, names[i], (0, margin + int(margin*i) + int(thickness/2)), font, fontScale, fontColor, lineType)
cv2.putText(blank, str(values[i]), (left_margin + 200, margin + int(margin*i) + int(thickness/2)), font, fontScale, fontColor, lineType)
cv2.imshow("Inferences", blank)
def test():
values = [0.2, 0.3, 0.1, 0.9, 0.6, 0.21]
names = ['Four', 'Dang', 'Startrek', 'Fist', 'Palm', 'Garbage']
while(True):
for i in range(len(values)):
values[i] = randint(0, 100)/100
drawInferences(values, names)
if cv2.waitKey(1) & 0xFF == ord('q'):
break
cv2.destroyAllWindows()
if __name__ == "__main__":
test()