forked from thehiddenwaffle/depthai_tgtracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TGTTrackerBpfEdge.py
803 lines (706 loc) · 35.7 KB
/
TGTTrackerBpfEdge.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
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
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
# noinspection DuplicatedCode
# Modified from HandTrackerBpfEdge
import json
import marshal
import sys
from pathlib import Path
from string import Template
from typing import Literal, get_args, Tuple, cast, Union, Dict
import cv2
import depthai.node as n
import numpy as np
from depthai import Pipeline, CameraBoardSocket, Device, CameraSensorType, MonoCameraProperties, \
ColorCameraProperties, OpenVINO, ImgFrame, Point2f, ImageManipConfig, Buffer, NNData
import mediapipe_utils as mpu
from FPS import FPS
import depthai as dai
# noinspection DuplicatedCode
SCRIPT_DIR = Path(__file__).resolve().parent
PALM_DETECTION_MODEL = str(SCRIPT_DIR / "models/palm_detection_sh4.blob")
LANDMARK_MODEL_FULL = str(SCRIPT_DIR / "models/hand_landmark_full_sh4.blob")
LANDMARK_MODEL_LITE = str(SCRIPT_DIR / "models/hand_landmark_lite_sh4.blob")
LANDMARK_MODEL_SPARSE = str(SCRIPT_DIR / "models/hand_landmark_sparse_sh4.blob")
DETECTION_POSTPROCESSING_MODEL = str(
SCRIPT_DIR / "custom_models/PDPostProcessing_top2_sh1.blob"
)
CENTERNET_MODEL = str(
SCRIPT_DIR / "models" / "movenet_singlepose_lightning_U8_transpose.blob"
)
MOVENET_MULTI_MODEL = str(
SCRIPT_DIR / "custom_models" / "movenet_multipose_lightning_384x640_p20_nopost_myriad_barracuda.blob"
)
SCRIPT_BODY_CONF = str(SCRIPT_DIR / "pipeline_scripts" / "multi_bfp" / "pd_manager.py")
SCRIPT_HAND_LM_CONF = str(SCRIPT_DIR / "pipeline_scripts" / "multi_bfp" / "hand_lm_manager.py")
SCRIPT_RESULTS = str(SCRIPT_DIR / "pipeline_scripts" / "multi_bfp" / "result_out.py")
def to_planar(arr: np.ndarray, shape: tuple) -> np.ndarray:
return cv2.resize(arr, shape).transpose(2, 0, 1).flatten()
TOF = Literal['oak_d_sr_poe']
SRBase = Literal['oak_d_sr']
RGBStereoPair = Literal[SRBase, TOF]
MonoStereoPair = Literal['oak_d_s2', 'oak_d_lite', 'oak_d_pro']
DisparityDepth = Literal[SRBase, MonoStereoPair]
DeviceModel = Literal[TOF, RGBStereoPair, MonoStereoPair]
BodyModel = Literal["movenet", "movenet_multi"]
RGBFullResolution = Literal["full"]
RGBUltraResolution = Literal["ultra"]
ResolutionType = Literal[RGBFullResolution, RGBUltraResolution]
SRRGBResolutionDim = Tuple[Literal[1280], Literal[800]]
RGBFullResolutionDim = Tuple[Literal[1920], Literal[1080]]
RGBUltraResolutionDim = Tuple[Literal[3840], Literal[2160]]
SupportedResolution = Union[SRRGBResolutionDim, RGBFullResolutionDim, RGBUltraResolutionDim]
TraceLevel = Literal[
0, 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]
class DeviceCapability:
def __init__(self, res: SupportedResolution, mono_stereo: bool):
self.res, self.mono_stereo = res, mono_stereo
self.res_type = MonoCameraProperties.SensorResolution.THE_400_P \
if mono_stereo else ColorCameraProperties.SensorResolution.THE_800_P
def run_constructor(self, pipeline: Pipeline) -> n.ColorCamera | n.MonoCamera:
con = pipeline.createMonoCamera if self.mono_stereo else pipeline.createColorCamera
return con()
def correct_preview_size(self, cam: n.ColorCamera | n.MonoCamera):
if self.mono_stereo:
return
cam.setPreviewSize(320, 320)
# noinspection PyTypeChecker
device_cfgs: Dict[DeviceModel, DeviceCapability] = {
"oak_d_sr_poe": DeviceCapability(
tuple(get_args(item)[0] for item in get_args(SRRGBResolutionDim)),
False
),
"oak_d_sr": DeviceCapability(
tuple(get_args(item)[0] for item in get_args(SRRGBResolutionDim)),
False
),
"oak_d_s2": DeviceCapability(
tuple(get_args(item)[0] for item in get_args(RGBFullResolutionDim)),
True
),
"oak_d_lite": DeviceCapability(
tuple(get_args(item)[0] for item in get_args(RGBFullResolutionDim)),
True
),
"oak_d_pro": DeviceCapability(
tuple(get_args(item)[0] for item in get_args(RGBFullResolutionDim)),
True
),
}
# noinspection DuplicatedCode
class TGTTracker:
"""
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,
- `pd_score`: confidence score to determine whether a detection is reliable (a float between 0 and 1).
- `pd_nms_thresh`: NMS threshold.
- `use_lm`: when True, run landmark model, otherwise, only the palm detection model is run
- `lm_model`: landmark model. Either:
- 'full' for LANDMARK_MODEL_FULL,
- 'lite' for LANDMARK_MODEL_LITE,
- 'sparse' for LANDMARK_MODEL_SPARSE,
- a path of a blob file.
- `lm_score_thresh`: confidence score to determine whether landmark prediction is reliable
(a float between 0 and 1).
- `use_world_landmarks`: boolean. The landmark model yields 2 types of 3D coordinates:
- coordinates expressed in pixels in the image, always stored in hand.landmarks,
- coordinates expressed in meters in the world, stored in hand.world_landmarks
only if `use_world_landmarks` is True.
- `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 the value of 'crop'
- `use_gesture` : boolean, when True, recognize hand poses from a predefined set of poses
(ONE, TWO, THREE, FOUR, FIVE, OK, PEACE, FIST)
- `body_model`: Movenet single pose model: `lightning` or `thunder`
- `body_score_thresh`: Movenet score thresh
- `single_hand_tolerance_thresh` (Duo mode only): In Duo mode, if there is only one hand in a frame,
in order to know when a second hand will appear, you need to run the palm detection
in the following frames. Because palm detection is slow, you may want to delay
the next time you will run it. 'single_hand_tolerance_thresh' is the number of
frames during only one hand is detected before palm detection is run again.
- `lm_nb_threads` : 1 or 2 (default=2), number of inference threads for the landmark model
- `use_same_image` (Edge Duo mode only) : boolean, when True, use the same image when inferring the landmarks of the
2 hands (setReusePreviousImage(True) in the ImageManip node before the landmark model).
When True, the FPS is significantly higher but the skeleton may appear shifted on one of the 2
hands.
- `stats` : boolean, when True, display some statistics when exiting.
- `trace` : int, 0 = no trace, otherwise print some debug messages or show output of ImageManip nodes
if trace & 1, print application level info like number of palm detections,
if trace & 2, print lower level info like when a message is sent or received by the manager script node,
if trace & 4, show in cv2 windows outputs of ImageManip node,
if trace & 8, save in file tmp_code.py the python code of the manager script node
Ex: if trace==3, both application and low level info are displayed.
"""
def __init__(
self,
input_src: DeviceModel = 'oak_d_sr_poe',
laconic=True,
pd_model=PALM_DETECTION_MODEL,
pd_score_thresh=0.5,
use_lm=True,
lm_model="lite",
lm_score_thresh=0.3,
use_world_landmarks=True,
pp_model=DETECTION_POSTPROCESSING_MODEL,
max_bodies=4,
crop=False,
internal_fps=None,
resolution: ResolutionType = "full",
internal_frame_height: int = 640,
use_gesture=True,
# TODO swap to Centernet trained from https://github.com/xingyizhou/CenterNet.git
body_model: BodyModel = "movenet_multi",
body_score_thresh=0.15,
single_hand_tolerance_thresh: int = 10,
use_same_image=True,
lm_nb_threads: int = 2,
stats=False,
trace: TraceLevel = 0,
):
self.pd_input_length = 128
self.lm_input_length = 224
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
print(f"Palm detection blob : {self.pd_model}")
if lm_model == "full":
self.lm_model = LANDMARK_MODEL_FULL
elif lm_model == "lite":
self.lm_model = LANDMARK_MODEL_LITE
elif lm_model == "sparse":
self.lm_model = LANDMARK_MODEL_SPARSE
else:
self.lm_model = lm_model
print(f"Landmark blob : {self.lm_model}")
self.pp_model = pp_model
print(f"PD post processing blob : {self.pp_model}")
self.max_bodies = max_bodies
self.body_score_thresh = body_score_thresh
self.body_input_length = 256
self.body_input_width = 256
if body_model == "movenet":
self.body_model = CENTERNET_MODEL
self.body_input_length = 512
self.body_input_width = 512
if body_model == "movenet_multi":
self.body_model = MOVENET_MULTI_MODEL
self.body_input_length = 384
self.body_input_width = 640
print(f"Body pose blob : {self.body_model}")
assert lm_nb_threads in [1, 2]
self.lm_nb_threads = lm_nb_threads
self.body_pre_focusing = "group"
self.pd_score_thresh = pd_score_thresh
self.lm_score_thresh = lm_score_thresh
self.xyz = False
self.crop = crop
self.use_world_landmarks = use_world_landmarks
self.stats = stats
self.trace = trace
self.use_gesture = use_gesture
self.single_hand_tolerance_thresh = single_hand_tolerance_thresh
self.device = Device()
if input_src in get_args(DeviceModel):
self.input_device = input_src
# Camera frames are not sent to the host
self.laconic = laconic and not (self.trace & 4)
if input_src in get_args(RGBStereoPair):
if resolution != 'full':
raise ValueError("Varying resolution for tof sensor has not been implemented, use full")
self.resolution = tuple(get_args(item)[0] for item in get_args(SRRGBResolutionDim))
else:
if resolution == "full":
self.resolution = get_args(RGBFullResolutionDim)
elif resolution == "ultra":
self.resolution = get_args(RGBUltraResolutionDim)
else:
print(f"Error: {resolution} is not a valid resolution !")
sys.exit()
print("Sensor resolution:", self.resolution)
# Check if the device supports stereo
camera_features = self.device.getConnectedCameraFeatures()
tof = any([cam for cam in camera_features if CameraSensorType.TOF in cam.supportedTypes])
l_stereo = next(filter(lambda x: x.socket == CameraBoardSocket.CAM_B, camera_features), False)
r_stereo = next(filter(lambda x: x.socket == CameraBoardSocket.CAM_C, camera_features), False)
has_stereo = l_stereo and r_stereo and l_stereo.sensorName == r_stereo.sensorName
if has_stereo or tof:
self.xyz = True
if internal_fps is None:
base_internal_fps = 20
lm_frame_cost = {"full": 13, "lite": 3, "sparse": 10}
xyz_no_tof_cost = 5
# fmt: off
self.internal_fps = (
base_internal_fps
- (lm_frame_cost[lm_model] if lm_model in lm_frame_cost else 0)
- (xyz_no_tof_cost if self.xyz else 0)
)
# fmt: on
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 input_src in get_args(TOF):
self.internal_fps = 15
if self.trace & 16:
self.internal_fps = 2
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()
# 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
pipeline = self.create_pipeline()
self.device.startPipeline(pipeline)
print(f"Pipeline started - USB speed: {str(self.device.getUsbSpeed()).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="results_out", maxSize=1, blocking=False
)
# For showing outputs of ImageManip nodes (debugging)
if self.trace & 4:
self.q_pd_manager_out = self.device.getOutputQueue(
name="pd_manager_out", maxSize=1, blocking=False
)
self.q_hand_lm_manager_out_left = self.device.getOutputQueue(
name="hand_lm_manager_out_left", maxSize=1, blocking=False
)
self.q_hand_lm_manager_out_right = self.device.getOutputQueue(
name="hand_lm_manager_out_right", maxSize=1, blocking=False
)
self.fps = FPS()
self.nb_frames_body_inference = 0
self.nb_frames_pd_inference = 0
self.nb_frames_lm_inference = 0
self.nb_lm_inferences = 0
self.nb_failed_lm_inferences = 0
self.nb_frames_lm_inference_after_landmarks_ROI = 0
self.nb_frames_no_hand = 0
def create_pipeline(self):
print("Creating pipeline...")
# Start defining a pipeline
pipeline: Pipeline = Pipeline()
pipeline.setOpenVINOVersion(version=OpenVINO.Version.VERSION_2022_1)
# ColorCamera
print("Creating Color Camera...")
cam = None
if self.input_device in get_args(MonoStereoPair):
cam = pipeline.createColorCamera()
cam.setInterleaved(False)
cam.setIspScale(self.scale_nd[0], self.scale_nd[1])
cam.setFps(self.internal_fps)
if self.resolution == get_args(RGBFullResolutionDim):
cam.setResolution(ColorCameraProperties.SensorResolution.THE_1080_P)
else:
cam.setResolution(ColorCameraProperties.SensorResolution.THE_4_K)
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)
# Define manager script nodes
pd_script = self.build_manager_script(SCRIPT_BODY_CONF, pipeline)
hand_lm_script = self.build_manager_script(SCRIPT_HAND_LM_CONF, pipeline)
results_script = self.build_manager_script(SCRIPT_RESULTS, pipeline)
results_script.inputs["early_out_pd"].setBlocking(False)
results_script.inputs["early_out_pd"].setQueueSize(4)
results_script.inputs["early_out_lm"].setBlocking(False)
results_script.inputs["early_out_lm"].setQueueSize(4)
pd_script.outputs["early_out_pd"].link(results_script.inputs["early_out_pd"])
pd_script.outputs["processed_pd"].link(hand_lm_script.inputs["processed_pd"])
hand_lm_script.outputs["early_out_lm"].link(results_script.inputs["early_out_lm"])
hand_lm_script.outputs["processed_hands"].link(results_script.inputs["processed_hands"])
if self.xyz:
spatial_location_calculator = pipeline.createSpatialLocationCalculator()
spatial_location_calculator.setWaitForConfigInput(True)
spatial_location_calculator.inputDepth.setBlocking(False)
spatial_location_calculator.inputDepth.setQueueSize(1)
if self.input_device in get_args(DisparityDepth):
print("Creating XYZ Nodes")
# For now, RGB needs fixed focus to properly align with depth.
# The value used during calibration should be used here
left = device_cfgs[self.input_device].run_constructor(pipeline)
left.setBoardSocket(CameraBoardSocket.CAM_B)
left.setResolution(device_cfgs[self.input_device].res_type)
left.setFps(self.internal_fps)
left.setInterleaved(False)
right = device_cfgs[self.input_device].run_constructor(pipeline)
right.setBoardSocket(CameraBoardSocket.CAM_C)
right.setResolution(device_cfgs[self.input_device].res_type)
right.setFps(self.internal_fps)
right.setInterleaved(False)
device_cfgs[self.input_device].correct_preview_size(left)
device_cfgs[self.input_device].correct_preview_size(right)
stereo = pipeline.createStereoDepth()
# stereo.inputConfig.possibleDatatypes.append()
stereo.setConfidenceThreshold(230)
# LR-check is required for depth alignment
stereo.setLeftRightCheck(True)
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(StereoDepthProperties.MedianFilter.MEDIAN_OFF)
if self.input_device in get_args(MonoStereoPair):
calib_data = self.device.readCalibration()
calib_lens_pos = calib_data.getLensPosition(CameraBoardSocket.CAM_A)
print(f"RGB calibration lens position: {calib_lens_pos}")
cam.initialControl.setManualFocus(calib_lens_pos)
stereo.setDepthAlign(CameraBoardSocket.CAM_A)
else:
cam = left
left.preview.link(stereo.left)
right.preview.link(stereo.right)
stereo.depth.link(spatial_location_calculator.inputDepth)
elif self.input_device in get_args(TOF):
cam_a: n.Camera = pipeline.create(n.Camera)
# We assume the ToF camera sensor is on port CAM_A
cam_a.setBoardSocket(CameraBoardSocket.CAM_A)
tof: n.ToF = pipeline.create(n.ToF)
cam_a.raw.link(tof.input)
tof.depth.link(spatial_location_calculator.inputDepth)
else:
raise ValueError(f"{self.input_device} is not a supported type")
# manager_script.outputs["spatial_location_config"].link(
# spatial_location_calculator.inputConfig
# )
# spatial_location_calculator.out.link(manager_script.inputs["spatial_data"])
# Define body pose detection pre-processing: resize preview to (self.body_input_length,
# self.body_input_length)
# and transform BGR to RGB
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)
print("Creating Body Pose Detection pre processing image manip...")
pre_body_manip = pipeline.create(n.ImageManip)
pre_body_manip.setMaxOutputFrameSize(
self.body_input_length * self.body_input_width * 3
)
pre_body_manip.inputImage.setQueueSize(1)
pre_body_manip.inputImage.setBlocking(False)
crop_region = {'x_min': 0, 'y_min': -self.pad_h, 'x_max': self.frame_size,
'y_max': -self.pad_h + self.frame_size, 'size': self.frame_size}
points = [
[crop_region['x_min'], crop_region['y_min']],
[crop_region['x_max'] - 1, crop_region['y_min']],
[crop_region['x_max'] - 1, crop_region['y_max'] - 1],
[crop_region['x_min'], crop_region['y_max'] - 1]]
point2fList = []
for p in points:
pt = Point2f()
pt.x, pt.y = p[0], p[1]
point2fList.append(pt)
pre_body_manip.initialConfig.setWarpTransformFourPoints(point2fList, False)
pre_body_manip.initialConfig.setResize(self.body_input_width, self.body_input_length)
pre_body_manip.initialConfig.setFrameType(ImgFrame.Type.RGB888p)
cam.preview.link(pre_body_manip.inputImage)
# Define landmark model
print("Creating Body Pose Detection Neural Network...")
body_nn = pipeline.create(n.NeuralNetwork)
body_nn.setBlobPath(Path(self.body_model))
# body_nn.setNumInferenceThreads(2)
pre_body_manip.out.link(body_nn.input)
body_nn.out.link(pd_script.inputs["body_nn_data"])
if self.trace & 4:
body_nn.passthrough.link(pd_script.inputs["body_nn_frame"])
debug_out_palm_link = pipeline.createXLinkOut()
debug_out_palm_link.setStreamName("pd_manager_out")
pd_script.outputs['palm_trace4_output'].link(debug_out_palm_link.input)
# # 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(n.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)
pd_script.outputs["pre_pd_manip_cfg"].link(pre_pd_manip.inputConfig)
# Define palm detection model
print("Creating Palm Detection Neural Network...")
pd_nn = pipeline.create(n.NeuralNetwork)
pd_nn.setBlobPath(Path(self.pd_model))
pre_pd_manip.out.link(pd_nn.input)
# Define palm detection post-processing "model"
print("Creating Palm Detection post-processing Neural Network...")
post_pd_nn = pipeline.create(n.NeuralNetwork)
post_pd_nn.setBlobPath(Path(self.pp_model))
pd_nn.out.link(post_pd_nn.input)
post_pd_nn.out.link(pd_script.inputs["pd_data"])
# Define link to send result to host
manager_out = pipeline.createXLinkOut()
manager_out.setStreamName("results_out")
results_script.outputs["results_out"].link(manager_out.input)
# Define landmark pre-processing image manip
print("Creating Hand Landmark pre-processing image manip...")
pre_lm_manip = pipeline.create(n.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)
hand_lm_script.outputs["pre_lm_manip_cfg"].link(pre_lm_manip.inputConfig)
# For debugging
if self.trace & 4:
debug_out_hand_link_left = pipeline.createXLinkOut()
debug_out_hand_link_left.setStreamName('hand_lm_manager_out_left')
hand_lm_script.outputs['hand_trace4_output_left'].link(debug_out_hand_link_left.input)
debug_out_hand_link_right = pipeline.createXLinkOut()
debug_out_hand_link_right.setStreamName('hand_lm_manager_out_right')
hand_lm_script.outputs['hand_trace4_output_right'].link(debug_out_hand_link_right.input)
# Define landmark model
print(f"Creating Hand Landmark Neural Network ({self.lm_nb_threads} threads)...")
lm_nn = pipeline.create(n.NeuralNetwork)
lm_nn.setBlobPath(Path(self.lm_model))
lm_nn.setNumInferenceThreads(self.lm_nb_threads)
pre_lm_manip.out.link(lm_nn.input)
lm_nn.out.link(hand_lm_script.inputs["lm_nn_data"])
if self.trace & 4:
lm_nn.passthrough.link(hand_lm_script.inputs["lm_nn_frame"])
print("Pipeline created.")
return pipeline
def build_manager_script(self, script_path, pipeline):
"""
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
"""
manager_script = pipeline.create(n.Script)
# Read the template
with open(script_path, "r") as file:
template = Template(file.read())
name = file.name.split("/")[-1].split(".")[0]
if len(name) > 17:
raise ValueError(f"make the script name shorter or edit the padding code below this error: {name}")
name_val = f"\"{name}{(' ' * (17 - len(name)))}:\""
subs = {
"_STUB_IMPORTS": '"""',
"_NAME": name_val,
"_TRACE1": "" if self.trace & 1 else '"""',
"_TRACE2": "" if self.trace & 2 else '"""',
"_TRACE4": "" if self.trace & 4 else '"""',
"_TRACE_INFO": "" if self.trace & 16 else '"""',
"_frame_queue_size": 3,
"_fps": self.internal_fps,
"_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,
"_body_score_thresh": self.body_score_thresh,
"_body_input_length": self.body_input_length,
"_single_hand_tolerance_thresh": self.single_hand_tolerance_thresh,
}
# Perform the substitution
code = template.substitute(**subs)
# Remove comments and empty lines
import re
# Remove None placeholders
code = re.sub(r"[^#\s]+ *#{3}", "", code)
# Remove triple comment on traces and blocks
code = re.sub(r"###", "", code)
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 self.trace & 8:
with open(f"{script_path[:script_path.rindex('/')]}/{name}_DEBUG_OUT.py", "w") as file:
file.write(code)
manager_script.setScript(code)
return manager_script
def extract_hand_data(self, res, hand_idx):
hand = mpu.HandRegion()
hand.rect_x_center_a = res["rect_center_x"][hand_idx] * self.frame_size
hand.rect_y_center_a = res["rect_center_y"][hand_idx] * self.frame_size
hand.rect_w_a = hand.rect_h_a = res["rect_size"][hand_idx] * self.frame_size
hand.rotation = res["rotation"][hand_idx]
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_idx]
hand.handedness = res["handedness"][hand_idx]
hand.label = "right" if hand.handedness > 0.5 else "left"
hand.norm_landmarks = np.array(res["rrn_lms"][hand_idx]).reshape(-1, 3)
hand.landmarks = (
(np.array(res["sqn_lms"][hand_idx]) * self.frame_size)
.reshape(-1, 2)
.astype(np.int32)
)
if self.xyz:
hand.xyz = np.array(res["xyz"][hand_idx])
hand.xyz_zone = res["xyz_zone"][hand_idx]
# 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
# World landmarks
if self.use_world_landmarks:
hand.world_landmarks = np.array(res["world_lms"][hand_idx]).reshape(-1, 3)
if self.use_gesture:
mpu.recognize_gesture(hand)
return hand
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: ImgFrame = cast(ImgFrame, self.q_video.get())
video_frame = in_video.getCvFrame()
# For debugging
if self.trace & 4:
pre_pd_manip: Buffer = cast(Buffer, self.q_pd_manager_out.tryGet())
if pre_pd_manip:
pd_results: dict = marshal.loads(pre_pd_manip.getData())
colors = [(0, 0, 255), (0, 127, 255), (0, 255, 255), (0, 255, 127), (0, 255, 0), (127, 255, 0),
(255, 255, 0),
(255, 127, 0), (255, 0, 0), (255, 0, 127)]
for idx, box in enumerate(pd_results.get("body_boxes", [])):
color = colors[idx % len(colors)]
cv2.rectangle(video_frame, (box[0], box[1]), (box[2], box[3]), color, 2)
cv2.putText(video_frame, f"p{idx}:{round(box[4], 2)}", (box[0], box[1]), cv2.FONT_HERSHEY_SIMPLEX, 1, color)
for palm_search_zone in pd_results.get("palm_search_zones", []):
rect = cv2.RotatedRect(**palm_search_zone)
# center: cv2.typing.Point2f, size: cv2.typing.Size2f, angle: float
box = cv2.boxPoints(rect)
box = np.intp(box)
cv2.drawContours(video_frame, [box], 0, (100, 100, 100), 2)
hand_lm_manager_out_left: ImgFrame = cast(ImgFrame, self.q_hand_lm_manager_out_left.tryGet())
if hand_lm_manager_out_left:
hand_lm_manager_out_left_cv = hand_lm_manager_out_left.getCvFrame()
cv2.imshow("left", hand_lm_manager_out_left_cv)
hand_lm_manager_out_right: ImgFrame = cast(ImgFrame, self.q_hand_lm_manager_out_right.tryGet())
if hand_lm_manager_out_right:
hand_lm_manager_out_right_cv = hand_lm_manager_out_right.getCvFrame()
cv2.imshow("right", hand_lm_manager_out_right_cv)
# Get result from device
res = cast(NNData, self.q_manager_out.get())
hands = []
# for i in range(len(res.get("lm_score", []))):
# hand = self.extract_hand_data(res, i)
# hands.append(hand)
# Statistics
if self.stats:
if res["bd_pd_inf"] == 1:
self.nb_frames_body_inference += 1
elif res["bd_pd_inf"] == 2:
self.nb_frames_body_inference += 1
self.nb_frames_pd_inference += 1
else:
if res["nb_lm_inf"] > 0:
self.nb_frames_lm_inference_after_landmarks_ROI += 1
if res["nb_lm_inf"] == 0:
self.nb_frames_no_hand += 1
else:
self.nb_frames_lm_inference += 1
self.nb_lm_inferences += res["nb_lm_inf"]
self.nb_failed_lm_inferences += res["nb_lm_inf"] - len(hands)
return video_frame, hands, None
def exit(self):
self.device.close()
# Print some stats
if self.stats:
nb_frames = self.fps.nb_frames()
print(f"FPS : {self.fps.get_global():.1f} f/s (# frames = {nb_frames})")
print(
"# frames w/ no hand : "
f"{self.nb_frames_no_hand} ({100 * self.nb_frames_no_hand / nb_frames:.1f}%)"
)
print(
"# frames w/ body detection : "
f"{self.nb_frames_body_inference} ({100 * self.nb_frames_body_inference / nb_frames:.1f}%)"
)
print(
"# frames w/ palm detection : "
f"{self.nb_frames_pd_inference} ({100 * self.nb_frames_pd_inference / nb_frames:.1f}%)"
)
post_palm_frames = self.nb_frames_lm_inference - self.nb_frames_lm_inference_after_landmarks_ROI
print(
"# frames w/ landmark inference : "
f"{self.nb_frames_lm_inference} ({100 * self.nb_frames_lm_inference / nb_frames:.1f}%)- "
f"# after palm detection: {post_palm_frames} - "
f"# after landmarks ROI prediction: {self.nb_frames_lm_inference_after_landmarks_ROI}"
)
if self.nb_lm_inferences:
print(
f"# lm inferences: {self.nb_lm_inferences} - "
f"# failed lm inferences: {self.nb_failed_lm_inferences} ("
f"{100 * self.nb_failed_lm_inferences / self.nb_lm_inferences:.1f}%)"
)