forked from geaxgx/depthai_hand_tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHandTrackerEdge.py
More file actions
577 lines (509 loc) · 27.2 KB
/
HandTrackerEdge.py
File metadata and controls
577 lines (509 loc) · 27.2 KB
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
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
import numpy as np
from collections import namedtuple
import depthai as dai
import cv2
from pathlib import Path
import time
import sys
from string import Template
import marshal
try:
from FPS import FPS, now
import mediapipe_utils as mpu
except ModuleNotFoundError:
from depthai_hand_tracker.FPS import FPS, now
import depthai_hand_tracker.mediapipe_utils as mpu
SCRIPT_DIR = Path(__file__).resolve().parent
PALM_DETECTION_MODEL = str(SCRIPT_DIR / "models/palm_detection_sh4.blob")
LANDMARK_MODEL = str(SCRIPT_DIR / "models/hand_landmark_sh4.blob")
DETECTION_POSTPROCESSING_MODEL = str(SCRIPT_DIR / "custom_models/DetectionBestCandidate_sh1.blob")
MOVENET_LIGHTNING_MODEL = str(SCRIPT_DIR / "models/movenet_singlepose_lightning_U8_transpose.blob")
MOVENET_THUNDER_MODEL = str(SCRIPT_DIR / "models/movenet_singlepose_thunder_U8_transpose.blob")
TEMPLATE_MANAGER_SCRIPT = str(SCRIPT_DIR / "template_manager_script.py")
def to_planar(arr: np.ndarray, shape: tuple) -> np.ndarray:
return cv2.resize(arr, shape).transpose(2,0,1).flatten()
class HandTracker:
"""
Mediapipe Hand Tracker for depthai
Arguments:
- input_src: frame source,
- "rgb" or None: OAK* internal color camera,
- "rgb_laconic": same as "rgb" but without sending the frames to the host (Edge mode only),
- a file path of an image or a video,
- an integer (eg 0) for a webcam id,
In edge mode, only "rgb" and "rgb_laconic" are possible
- pd_model: palm detection model blob file (if None, takes the default value PALM_DETECTION_MODEL),
- pd_score: confidence score to determine whether a detection is reliable (a float between 0 and 1).
- pd_nms_thresh: NMS threshold.
- use_lm: boolean. When True, run landmark model. Otherwise, only palm detection model is run
- lm_model: landmark model blob file
- None : the default blob file LANDMARK_MODEL,
- a path of a blob file.
- lm_score_thresh : confidence score to determine whether landmarks prediction is reliable (a float between 0 and 1).
- pp_model: path to the detection post processing model,
- solo: boolean, when True detect one hand max (much faster since we run the pose detection model only if no hand was detected in the previous frame)
On edge mode, always True
- xyz : boolean, when True calculate the (x, y, z) coords of the detected palms.
- crop : boolean which indicates if square cropping on source images is applied or not
- internal_fps : when using the internal color camera as input source, set its FPS to this value (calling setFps()).
- resolution : sensor resolution "full" (1920x1080) or "ultra" (3840x2160),
- internal_frame_height : when using the internal color camera, set the frame height (calling setIspScale()).
The width is calculated accordingly to height and depends on value of 'crop'
- use_gesture : boolean, when True, recognize hand poses froma predefined set of poses
(ONE, TWO, THREE, FOUR, FIVE, NICE, PEACE, FIST)
- body_pre_focusing: None or "right" or "left" or "group" or "higher". Body pre focusing is the use
of a body pose detector to help to focus on the region of the image that
contains one hand ("left" or "right") or "both" hands.
None = don't use body pre focusing.
- body_model : Movenet single pose model: "lightning", "thunder"
- body_score_thresh : Movenet score thresh
- hands_up_only: boolean. When using body_pre_focusing, if hands_up_only is True, consider only hands for which the wrist keypoint
is above the elbow keypoint.
- stats : boolean, when True, display some statistics when exiting.
- trace: boolean, when True print some debug messages or show output of ImageManip nodes
(used only in Edge mode)
"""
def __init__(self, input_src=None,
pd_model=None,
pd_score_thresh=0.5, pd_nms_thresh=0.3,
use_lm=True,
lm_model=None,
lm_score_thresh=0.5,
pp_model = DETECTION_POSTPROCESSING_MODEL,
solo=True,
xyz=False,
crop=False,
internal_fps=None,
resolution="full",
internal_frame_height=640,
use_gesture=False,
body_pre_focusing = None,
body_model = "thunder",
body_score_thresh=0.2,
hands_up_only=True,
stats=False,
trace=False
):
self.use_lm = use_lm
if not use_lm:
print("use_lm=False is not supported in Edge mode.")
sys.exit()
self.pd_model = pd_model if pd_model else PALM_DETECTION_MODEL
print(f"Palm detection blob : {self.pd_model}")
self.lm_model = lm_model if lm_model else LANDMARK_MODEL
print(f"Landmark blob : {self.lm_model}")
self.body_pre_focusing = body_pre_focusing
self.body_score_thresh = body_score_thresh
self.body_input_length = 256
self.hands_up_only = hands_up_only
if self.body_pre_focusing:
if body_model == "lightning":
self.body_model = MOVENET_LIGHTNING_MODEL
self.body_input_length = 192
else:
self.body_model = MOVENET_THUNDER_MODEL
print(f"Body pose blob : {self.body_model}")
self.pd_score_thresh = pd_score_thresh
self.pd_nms_thresh = pd_nms_thresh
self.lm_score_thresh = lm_score_thresh
self.pp_model = pp_model
if not solo:
print("Warning: non solo mode is not implemented in edge mode. Continuing in solo mode.")
self.solo = True
self.xyz = False
self.crop = crop
self.stats = stats
self.trace = trace
self.use_gesture = use_gesture
self.device = dai.Device()
if input_src == None or input_src == "rgb" or input_src == "rgb_laconic":
# Note that here (in Host mode), specifying "rgb_laconic" has no effect
# Color camera frames are systematically transferred to the host
self.input_type = "rgb" # OAK* internal color camera
self.laconic = input_src == "rgb_laconic" # Camera frames are not sent to the host
if resolution == "full":
self.resolution = (1920, 1080)
elif resolution == "ultra":
self.resolution = (3840, 2160)
else:
print(f"Error: {resolution} is not a valid resolution !")
sys.exit()
print("Sensor resolution:", self.resolution)
if xyz:
# Check if the device supports stereo
cameras = self.device.getConnectedCameras()
if dai.CameraBoardSocket.LEFT in cameras and dai.CameraBoardSocket.RIGHT in cameras:
self.xyz = True
else:
print("Warning: depth unavailable on this device, 'xyz' argument is ignored")
if internal_fps is None:
if self.xyz:
self.internal_fps = 31
else:
self.internal_fps = 39
else:
self.internal_fps = internal_fps
print(f"Internal camera FPS set to: {self.internal_fps}")
self.video_fps = self.internal_fps # Used when saving the output in a video file. Should be close to the real fps
if self.crop:
self.frame_size, self.scale_nd = mpu.find_isp_scale_params(internal_frame_height, self.resolution)
self.img_h = self.img_w = self.frame_size
self.pad_w = self.pad_h = 0
self.crop_w = (int(round(self.resolution[0] * self.scale_nd[0] / self.scale_nd[1])) - self.img_w) // 2
else:
width, self.scale_nd = mpu.find_isp_scale_params(internal_frame_height * self.resolution[0] / self.resolution[1], self.resolution, is_height=False)
self.img_h = int(round(self.resolution[1] * self.scale_nd[0] / self.scale_nd[1]))
self.img_w = int(round(self.resolution[0] * self.scale_nd[0] / self.scale_nd[1]))
self.pad_h = (self.img_w - self.img_h) // 2
self.pad_w = 0
self.frame_size = self.img_w
self.crop_w = 0
print(f"Internal camera image size: {self.img_w} x {self.img_h} - pad_h: {self.pad_h}")
else:
print("Invalid input source:", input_src)
sys.exit()
if self.body_pre_focusing:
# Defines the default crop region (pads the full image from both sides to make it a square image)
# Used when the algorithm cannot reliably determine the crop region from the previous frame.
self.crop_region = mpu.CropRegion(-self.pad_w, -self.pad_h,-self.pad_w+self.frame_size, -self.pad_h+self.frame_size, self.frame_size)
# Define and start pipeline
usb_speed = self.device.getUsbSpeed()
self.device.startPipeline(self.create_pipeline())
print(f"Pipeline started - USB speed: {str(usb_speed).split('.')[-1]}")
# Define data queues
if not self.laconic:
self.q_video = self.device.getOutputQueue(name="cam_out", maxSize=1, blocking=False)
self.q_manager_out = self.device.getOutputQueue(name="manager_out", maxSize=1, blocking=False)
# For showing outputs of ImageManip nodes (debugging)
if self.trace:
if self.body_pre_focusing:
self.q_pre_body_manip_out = self.device.getOutputQueue(name="pre_body_manip_out", maxSize=1, blocking=False)
self.q_pre_pd_manip_out = self.device.getOutputQueue(name="pre_pd_manip_out", maxSize=1, blocking=False)
self.q_pre_lm_manip_out = self.device.getOutputQueue(name="pre_lm_manip_out", maxSize=1, blocking=False)
self.fps = FPS()
self.nb_pd_inferences = 0
self.nb_lm_inferences = 0
self.nb_lm_inferences_after_landmarks_ROI = 0
self.nb_frames_no_hand = 0
self.nb_spatial_requests = 0
self.glob_pd_rtrip_time = 0
self.glob_lm_rtrip_time = 0
self.glob_spatial_rtrip_time = 0
def create_pipeline(self):
print("Creating pipeline...")
# Start defining a pipeline
pipeline = dai.Pipeline()
pipeline.setOpenVINOVersion(version = dai.OpenVINO.Version.VERSION_2021_4)
self.pd_input_length = 128
# ColorCamera
print("Creating Color Camera...")
cam = pipeline.createColorCamera()
if self.resolution[0] == 1920:
cam.setResolution(dai.ColorCameraProperties.SensorResolution.THE_1080_P)
else:
cam.setResolution(dai.ColorCameraProperties.SensorResolution.THE_4_K)
cam.setBoardSocket(dai.CameraBoardSocket.RGB)
cam.setInterleaved(False)
cam.setIspScale(self.scale_nd[0], self.scale_nd[1])
cam.setFps(self.internal_fps)
if self.crop:
cam.setVideoSize(self.frame_size, self.frame_size)
cam.setPreviewSize(self.frame_size, self.frame_size)
else:
cam.setVideoSize(self.img_w, self.img_h)
cam.setPreviewSize(self.img_w, self.img_h)
if not self.laconic:
cam_out = pipeline.createXLinkOut()
cam_out.setStreamName("cam_out")
cam_out.input.setQueueSize(1)
cam_out.input.setBlocking(False)
cam.video.link(cam_out.input)
# Define manager script node
manager_script = pipeline.create(dai.node.Script)
manager_script.setScript(self.build_manager_script())
if self.xyz:
print("Creating MonoCameras, Stereo and SpatialLocationCalculator nodes...")
# For now, RGB needs fixed focus to properly align with depth.
# This value was used during calibration
cam.initialControl.setManualFocus(130)
mono_resolution = dai.MonoCameraProperties.SensorResolution.THE_400_P
left = pipeline.createMonoCamera()
left.setBoardSocket(dai.CameraBoardSocket.LEFT)
left.setResolution(mono_resolution)
left.setFps(self.internal_fps)
right = pipeline.createMonoCamera()
right.setBoardSocket(dai.CameraBoardSocket.RIGHT)
right.setResolution(mono_resolution)
right.setFps(self.internal_fps)
stereo = pipeline.createStereoDepth()
stereo.setConfidenceThreshold(230)
# LR-check is required for depth alignment
stereo.setLeftRightCheck(True)
stereo.setDepthAlign(dai.CameraBoardSocket.RGB)
stereo.setSubpixel(False) # subpixel True brings latency
# MEDIAN_OFF necessary in depthai 2.7.2.
# Otherwise : [critical] Fatal error. Please report to developers. Log: 'StereoSipp' '533'
# stereo.setMedianFilter(dai.StereoDepthProperties.MedianFilter.MEDIAN_OFF)
spatial_location_calculator = pipeline.createSpatialLocationCalculator()
spatial_location_calculator.setWaitForConfigInput(True)
spatial_location_calculator.inputDepth.setBlocking(False)
spatial_location_calculator.inputDepth.setQueueSize(1)
left.out.link(stereo.left)
right.out.link(stereo.right)
stereo.depth.link(spatial_location_calculator.inputDepth)
manager_script.outputs['spatial_location_config'].link(spatial_location_calculator.inputConfig)
spatial_location_calculator.out.link(manager_script.inputs['spatial_data'])
if self.body_pre_focusing:
# Define body pose detection pre processing: resize preview to (self.body_input_length, self.body_input_length)
# and transform BGR to RGB
print("Creating Body Pose Detection pre processing image manip...")
pre_body_manip = pipeline.create(dai.node.ImageManip)
pre_body_manip.setMaxOutputFrameSize(self.body_input_length*self.body_input_length*3)
pre_body_manip.setWaitForConfigInput(True)
pre_body_manip.inputImage.setQueueSize(1)
pre_body_manip.inputImage.setBlocking(False)
cam.preview.link(pre_body_manip.inputImage)
manager_script.outputs['pre_body_manip_cfg'].link(pre_body_manip.inputConfig)
# For debugging
if self.trace:
pre_body_manip_out = pipeline.createXLinkOut()
pre_body_manip_out.setStreamName("pre_body_manip_out")
pre_body_manip.out.link(pre_body_manip_out.input)
# Define landmark model
print("Creating Body Pose Detection Neural Network...")
body_nn = pipeline.create(dai.node.NeuralNetwork)
body_nn.setBlobPath(self.body_model)
# lm_nn.setNumInferenceThreads(1)
pre_body_manip.out.link(body_nn.input)
body_nn.out.link(manager_script.inputs['from_body_nn'])
# Define palm detection pre processing: resize preview to (self.pd_input_length, self.pd_input_length)
print("Creating Palm Detection pre processing image manip...")
pre_pd_manip = pipeline.create(dai.node.ImageManip)
pre_pd_manip.setMaxOutputFrameSize(self.pd_input_length*self.pd_input_length*3)
pre_pd_manip.setWaitForConfigInput(True)
pre_pd_manip.inputImage.setQueueSize(1)
pre_pd_manip.inputImage.setBlocking(False)
cam.preview.link(pre_pd_manip.inputImage)
manager_script.outputs['pre_pd_manip_cfg'].link(pre_pd_manip.inputConfig)
# For debugging
if self.trace:
pre_pd_manip_out = pipeline.createXLinkOut()
pre_pd_manip_out.setStreamName("pre_pd_manip_out")
pre_pd_manip.out.link(pre_pd_manip_out.input)
# Define palm detection model
print("Creating Palm Detection Neural Network...")
pd_nn = pipeline.create(dai.node.NeuralNetwork)
pd_nn.setBlobPath(self.pd_model)
# Increase threads for detection
# pd_nn.setNumInferenceThreads(2)
pre_pd_manip.out.link(pd_nn.input)
# Define pose detection post processing "model"
print("Creating Palm Detection post processing Neural Network...")
post_pd_nn = pipeline.create(dai.node.NeuralNetwork)
post_pd_nn.setBlobPath(self.pp_model)
pd_nn.out.link(post_pd_nn.input)
post_pd_nn.out.link(manager_script.inputs['from_post_pd_nn'])
# Define link to send result to host
manager_out = pipeline.create(dai.node.XLinkOut)
manager_out.setStreamName("manager_out")
manager_script.outputs['host'].link(manager_out.input)
# Define landmark pre processing image manip
print("Creating Landmark pre processing image manip...")
self.lm_input_length = 224
pre_lm_manip = pipeline.create(dai.node.ImageManip)
pre_lm_manip.setMaxOutputFrameSize(self.lm_input_length*self.lm_input_length*3)
pre_lm_manip.setWaitForConfigInput(True)
pre_lm_manip.inputImage.setQueueSize(1)
pre_lm_manip.inputImage.setBlocking(False)
cam.preview.link(pre_lm_manip.inputImage)
# For debugging
if self.trace:
pre_lm_manip_out = pipeline.createXLinkOut()
pre_lm_manip_out.setStreamName("pre_lm_manip_out")
pre_lm_manip.out.link(pre_lm_manip_out.input)
manager_script.outputs['pre_lm_manip_cfg'].link(pre_lm_manip.inputConfig)
# Define landmark model
print("Creating Hand Landmark Neural Network...")
lm_nn = pipeline.create(dai.node.NeuralNetwork)
lm_nn.setBlobPath(self.lm_model)
# lm_nn.setNumInferenceThreads(1)
pre_lm_manip.out.link(lm_nn.input)
lm_nn.out.link(manager_script.inputs['from_lm_nn'])
print("Pipeline created.")
return pipeline
def build_manager_script(self):
'''
The code of the scripting node 'manager_script' depends on :
- the score threshold,
- the video frame shape
So we build this code from the content of the file template_manager_script.py which is a python template
'''
# Read the template
with open(TEMPLATE_MANAGER_SCRIPT, 'r') as file:
template = Template(file.read())
# Perform the substitution
code = template.substitute(
_TRACE = "node.warn" if self.trace else "#",
_pd_score_thresh = self.pd_score_thresh,
_lm_score_thresh = self.lm_score_thresh,
_pad_h = self.pad_h,
_img_h = self.img_h,
_img_w = self.img_w,
_frame_size = self.frame_size,
_crop_w = self.crop_w,
_IF_XYZ = "" if self.xyz else '"""',
_buffer_size = 1185 if self.xyz else 1138,
_IF_BPF = "" if self.body_pre_focusing else '"""',
_body_pre_focusing = self.body_pre_focusing,
_body_score_thresh = self.body_score_thresh,
_body_input_length = self.body_input_length,
_first_branch = 0 if self.body_pre_focusing else 1,
_hands_up_only = self.hands_up_only
)
# Remove comments and empty lines
import re
code = re.sub(r'"{3}.*?"{3}', '', code, flags=re.DOTALL)
code = re.sub(r'#.*', '', code)
code = re.sub('\n\s*\n', '\n', code)
# For debugging
if True: #self.trace:
with open("tmp_code.py", "w") as file:
file.write(code)
return code
def recognize_gesture(self, r):
# Finger states
# state: -1=unknown, 0=close, 1=open
d_3_5 = mpu.distance(r.norm_landmarks[3], r.norm_landmarks[5])
d_2_3 = mpu.distance(r.norm_landmarks[2], r.norm_landmarks[3])
angle0 = mpu.angle(r.norm_landmarks[0], r.norm_landmarks[1], r.norm_landmarks[2])
angle1 = mpu.angle(r.norm_landmarks[1], r.norm_landmarks[2], r.norm_landmarks[3])
angle2 = mpu.angle(r.norm_landmarks[2], r.norm_landmarks[3], r.norm_landmarks[4])
r.thumb_angle = angle0+angle1+angle2
if angle0+angle1+angle2 > 460 and d_3_5 / d_2_3 > 1.2:
r.thumb_state = 1
else:
r.thumb_state = 0
if r.norm_landmarks[8][1] < r.norm_landmarks[7][1] < r.norm_landmarks[6][1]:
r.index_state = 1
elif r.norm_landmarks[6][1] < r.norm_landmarks[8][1]:
r.index_state = 0
else:
r.index_state = -1
if r.norm_landmarks[12][1] < r.norm_landmarks[11][1] < r.norm_landmarks[10][1]:
r.middle_state = 1
elif r.norm_landmarks[10][1] < r.norm_landmarks[12][1]:
r.middle_state = 0
else:
r.middle_state = -1
if r.norm_landmarks[16][1] < r.norm_landmarks[15][1] < r.norm_landmarks[14][1]:
r.ring_state = 1
elif r.norm_landmarks[14][1] < r.norm_landmarks[16][1]:
r.ring_state = 0
else:
r.ring_state = -1
if r.norm_landmarks[20][1] < r.norm_landmarks[19][1] < r.norm_landmarks[18][1]:
r.little_state = 1
elif r.norm_landmarks[18][1] < r.norm_landmarks[20][1]:
r.little_state = 0
else:
r.little_state = -1
# Gesture
if r.thumb_state == 1 and r.index_state == 1 and r.middle_state == 1 and r.ring_state == 1 and r.little_state == 1:
r.gesture = "FIVE"
elif r.thumb_state == 0 and r.index_state == 0 and r.middle_state == 0 and r.ring_state == 0 and r.little_state == 0:
r.gesture = "FIST"
elif r.thumb_state == 1 and r.index_state == 0 and r.middle_state == 0 and r.ring_state == 0 and r.little_state == 0:
r.gesture = "NICE"
elif r.thumb_state == 0 and r.index_state == 1 and r.middle_state == 0 and r.ring_state == 0 and r.little_state == 0:
r.gesture = "ONE"
elif r.thumb_state == 0 and r.index_state == 0 and r.middle_state == 1 and r.ring_state == 0 and r.little_state == 0:
r.gesture = "FUCK1"
elif r.thumb_state == 1 and r.index_state == 0 and r.middle_state == 1 and r.ring_state == 0 and r.little_state == 0:
r.gesture = "FUCK2"
elif r.thumb_state == 1 and r.index_state == 1 and r.middle_state == 0 and r.ring_state == 0 and r.little_state == 0:
r.gesture = "SEVEN"
elif r.thumb_state == 1 and r.index_state == 1 and r.middle_state == 0 and r.ring_state == 0 and r.little_state == 1:
r.gesture = "ROCK"
elif r.thumb_state == 0 and r.index_state == 1 and r.middle_state == 1 and r.ring_state == 0 and r.little_state == 0:
r.gesture = "TWO"
elif r.thumb_state == 0 and r.index_state == 1 and r.middle_state == 1 and r.ring_state == 1 and r.little_state == 0:
r.gesture = "THREE"
elif r.thumb_state == 0 and r.index_state == 1 and r.middle_state == 1 and r.ring_state == 1 and r.little_state == 1:
r.gesture = "FOUR"
else:
r.gesture = None
def next_frame(self):
self.fps.update()
if self.laconic:
video_frame = np.zeros((self.img_h, self.img_w, 3), dtype=np.uint8)
else:
in_video = self.q_video.get()
video_frame = in_video.getCvFrame()
# For debugging
if self.trace:
if self.body_pre_focusing:
pre_body_manip = self.q_pre_body_manip_out.tryGet()
if pre_body_manip:
pre_pd_manip = pre_body_manip.getCvFrame()
cv2.imshow("pre_body_manip", pre_pd_manip)
pre_pd_manip = self.q_pre_pd_manip_out.tryGet()
if pre_pd_manip:
pre_pd_manip = pre_pd_manip.getCvFrame()
cv2.imshow("pre_pd_manip", pre_pd_manip)
pre_lm_manip = self.q_pre_lm_manip_out.tryGet()
if pre_lm_manip:
pre_lm_manip = pre_lm_manip.getCvFrame()
cv2.imshow("pre_lm_manip", pre_lm_manip)
# Get result from device
res = marshal.loads(self.q_manager_out.get().getData())
if res["type"] != 0 and res["lm_score"] > self.lm_score_thresh:
hand = mpu.HandRegion()
hand.rect_x_center_a = res["rect_center_x"] * self.frame_size
hand.rect_y_center_a = res["rect_center_y"] * self.frame_size
hand.rect_w_a = hand.rect_h_a = res["rect_size"] * self.frame_size
hand.rotation = res["rotation"]
hand.rect_points = mpu.rotated_rect_to_points(hand.rect_x_center_a, hand.rect_y_center_a, hand.rect_w_a, hand.rect_h_a, hand.rotation)
hand.lm_score = res["lm_score"]
hand.handedness = res["handedness"]
hand.label = "right" if hand.handedness > 0.5 else "left"
# hand.norm_landmarks contains the normalized ([0:1]) 3D coordinates of landmarks in the square rotated body bounding box
hand.norm_landmarks = np.array(res['rrn_lms']).reshape(-1,3)
# hand.landmarks = the landmarks in the image coordinate system (in pixel)
hand.landmarks = (np.array(res["sqn_lms"]) * self.frame_size).reshape(-1,2).astype(np.int)
if self.xyz:
hand.xyz = res["xyz"]
hand.xyz_zone = res["xyz_zone"]
# If we added padding to make the image square, we need to remove this padding from landmark coordinates and from rect_points
if self.pad_h > 0:
hand.landmarks[:,1] -= self.pad_h
for i in range(len(hand.rect_points)):
hand.rect_points[i][1] -= self.pad_h
if self.pad_w > 0:
hand.landmarks[:,0] -= self.pad_w
for i in range(len(hand.rect_points)):
hand.rect_points[i][0] -= self.pad_w
if self.use_gesture: self.recognize_gesture(hand)
hands = [hand]
else:
hands = []
# Statistics
if self.stats:
if res["type"] == 0:
self.nb_pd_inferences += 1
self.nb_frames_no_hand += 1
else:
self.nb_lm_inferences += 1
if res["type"] == 1:
self.nb_pd_inferences += 1
else: # res["type"] == 2
self.nb_lm_inferences_after_landmarks_ROI += 1
if res["lm_score"] < self.lm_score_thresh: self.nb_frames_no_hand += 1
return video_frame, hands, None
def exit(self):
self.device.close()
# Print some stats
if self.stats:
print(f"FPS : {self.fps.get_global():.1f} f/s (# frames = {self.fps.nb_frames()})")
print(f"# frames without hand : {self.nb_frames_no_hand}")
print(f"# pose detection inferences : {self.nb_pd_inferences}")
print(f"# landmark inferences : {self.nb_lm_inferences} - # after pose detection: {self.nb_lm_inferences - self.nb_lm_inferences_after_landmarks_ROI} - # after landmarks ROI prediction: {self.nb_lm_inferences_after_landmarks_ROI}")