-
Notifications
You must be signed in to change notification settings - Fork 0
/
darknet_video.py
204 lines (170 loc) · 7.78 KB
/
darknet_video.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
import os
import cv2
from queue import Queue
from threading import Thread
from MotionControl import darknet_dll
from MotionControl.utils import graphics
from MotionControl.utils import logicals
from MotionControl.utils import face
from time import sleep
configPath = "./data/yolov3-obj.cfg"
weightPath = "./data/yolov3-obj_13000.weights"
metaPath = "./data/obj.data"
facePath = "./data/face_dataset/"
faceCascade = facePath + "frontalface_default.xml"
netMain = None
metaMain = None
altNames = None
# frame_width, frame_height = 1280, 720
frame_width, frame_height = 640, 480
old_width, old_height = 0, 0
dshow_active = False
thresh_val = 0.7
movement_speed = 1
alpha, beta = 1.20, 25
# higher activator or deactivator value means less frames to take an action (beacuse Fps/default_val)
default_activator_val = 2.5
default_deactivator_val = 2.0
names = {'move': 'duz', 'press_move': 'basisaret', 'left_click': 'peace', 'empty': 'yumruk', '8pen': 'isaret'}
darknet_image = darknet_dll.make_image(frame_width, frame_height, 3)
def draw_boxes(detections, img):
for detection in detections:
pt1, pt2 = logicals.pt_extractor(detection)
cv2.rectangle(img, pt1, pt2, (0, 255, 0), 1)
cv2.putText(img,
detection[0].decode() +
" [" + str(round(detection[1] * 100, 2)) + "]",
(pt1[0], pt1[1] - 5), cv2.FONT_HERSHEY_SIMPLEX, 0.7,
[0, 255, 0], 2)
return img
def recreate_darknet_image(width, height):
global darknet_image
darknet_image = darknet_dll.make_image(width, height, 3)
def user_selection_and_detection(cap, full_frame_queue):
# User create update delete and select process
user_pickle, user_name = face.select_user(facePath, cap, alpha, beta)
# start a face detection process thread for selected user detection
th = Thread(target=face.detect_faces, args=(faceCascade, user_pickle, full_frame_queue, user_name,
frame_width, frame_height))
th.daemon = True
th.start()
def prepare_wxapp():
# run wx app mainloop in a thread
# it will perform cursor indication and 8pen window animations
wx_th = Thread(target=graphics.wx_app_main, args=())
wx_th.daemon = True
wx_th.start()
# wait till global cursow window variable exists
# graphics.wait_for_globals()
def YOLO():
global metaMain, netMain, altNames, frame_width, frame_height, thresh_val, old_width, old_height, darknet_image
full_frame_queue = Queue()
if not os.path.exists(configPath):
raise ValueError("Invalid config path `" + os.path.abspath(configPath)+"`")
if not os.path.exists(weightPath):
raise ValueError("Invalid weight path `" + os.path.abspath(weightPath)+"`")
if not os.path.exists(metaPath):
raise ValueError("Invalid data file path `" + os.path.abspath(metaPath)+"`")
if netMain is None:
netMain = darknet_dll.load_net_custom(configPath.encode(
"ascii"), weightPath.encode("ascii"), 0, 1) # batch size = 1
if metaMain is None:
metaMain = darknet_dll.load_meta(metaPath.encode("ascii"))
if altNames is None:
try:
with open(metaPath) as metaFH:
metaContents = metaFH.read()
import re
match = re.search("names *= *(.*)$", metaContents, re.IGNORECASE | re.MULTILINE)
if match:
result = match.group(1)
else:
result = None
try:
if os.path.exists(result):
with open(result) as namesFH:
namesList = namesFH.read().strip().split("\n")
altNames = [x.strip() for x in namesList]
except TypeError:
pass
except Exception:
pass
##################################### BEGIN #############################################
if dshow_active:
cap = cv2.VideoCapture(0, cv2.CAP_DSHOW)
else:
cap = cv2.VideoCapture(0)
cap.set(3, frame_width)
cap.set(4, frame_height)
# y1:y2, x1:x2
face.roi[1] = (frame_width, frame_height)
# ######## prepare wx app for GUIs ########
prepare_wxapp()
"""
sleep(5)
graphics.post_wx_event(graphics.eightpen_wnd, graphics.swtch_pg_evnt)
sleep(10)
graphics.post_wx_event(graphics.eightpen_wnd, graphics.swtch_pg_evnt)
"""
# ######## create user detection thread and make user selection ########
user_selection_and_detection(cap, full_frame_queue)
print("Starting the YOLO loop...")
sign_detector = logicals.SignDetector(altNames, frame_width, frame_height, movement_speed, names)
fps = graphics.ShowFps(10)
fps.start()
undetected_count = 0
while True:
frame_read = cv2.flip(cap.read()[1], 1)
frame_read = cv2.convertScaleAbs(frame_read, alpha=alpha, beta=beta)
# empty the queue for prevent queue from overfeeding and frame delay
while not full_frame_queue.empty():
try:
full_frame_queue.get_nowait()
except Exception:
continue
# put new frame into the queue so face detection can determine the roi
full_frame_queue.put(frame_read)
# skip if user not detected
if not face.skip_detection:
# y1:y2, x1:x2 for cropping
# 4 equals cv2.COLOR_BGR2RGB = 4
frame_rgb = cv2.cvtColor(frame_read[face.roi[0][1]:face.roi[1][1], face.roi[0][0]:face.roi[1][0]], 4)
# recreate new darknet image only if new frame shape different that old one
tmp_w, tmp_h = frame_rgb.shape[1], frame_rgb.shape[0]
if old_width != tmp_w or old_height != tmp_h:
recreate_darknet_image(tmp_w, tmp_h)
old_width, old_height = tmp_w, tmp_h
darknet_dll.copy_image_from_bytes(darknet_image, frame_rgb.tobytes())
detections = darknet_dll.detect_image(netMain, metaMain, darknet_image, thresh=thresh_val)
image = cv2.cvtColor(frame_rgb, cv2.COLOR_BGR2RGB)
fps_val = fps.next()
# update minimum detect activator count (on every Fps/default_val frames)
sign_detector.update_min_activator(round(fps_val/default_activator_val))
# for preventing in vain works when 0 sign detection occurs
if len(detections) > 0:
undetected_count = 0 # reset undetected count to 0
sign_detector.reset_check = False # reset check true
draw_boxes(detections, image)
# hand sign detection
sign_detector.detect_sign(detections)
# do it only if frame display true
if sign_detector.cursor_wnd_dsply:
image = graphics.draw_cursor_circles(image)
else:
# if undetected frame count >= to fps/default_val then reset old detection count values
undetected_count += 1
if undetected_count >= fps_val/default_deactivator_val:
if not sign_detector.reset_check: # reset only if has not been reset
sign_detector.reset_detection_counts()
graphics.cursor_wnd.Hide()
if not graphics.eightpen_wnd.is_custom_hide:
graphics.eightpen_wnd.custom_hide()
sign_detector.reset_check = True # set reset true
cv2.putText(image, f'{fps_val:3.1f} fps', (15, 15), cv2.FONT_HERSHEY_TRIPLEX, 0.55, (0, 255, 0), 1)
cv2.imshow('Demo', image)
k = cv2.waitKey(1) & 0xFF
# baska tus icin ord c gibi elif koyabilirsin
if k == ord('q') or k == ord('Q'):
exit(0)
if __name__ == "__main__":
YOLO()