-
Notifications
You must be signed in to change notification settings - Fork 79
/
template_manager_script_duo.py
350 lines (308 loc) · 15.3 KB
/
template_manager_script_duo.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
"""
This file is the template of the scripting node source code in edge mode
Substitution is made in HandTrackerEdge.py
In the following:
rrn_ : normalized [0:1] coordinates in rotated rectangle coordinate systems
sqn_ : normalized [0:1] coordinates in squared input image
"""
import marshal
from math import sin, cos, atan2, pi, degrees, floor, dist
from re import T
pad_h = ${_pad_h}
img_h = ${_img_h}
img_w = ${_img_w}
frame_size = ${_frame_size}
crop_w = ${_crop_w}
${_TRACE1} ("Starting manager script node")
${_IF_USE_HANDEDNESS_AVERAGE}
class HandednessAverage:
# Used to store the average handeness
# Why ? Handedness inferred by the landmark model is not perfect. For certain poses, it is not rare that the model thinks
# that a right hand is a left hand (or vice versa). Instead of using the last inferred handedness, we prefer to use the average
# of the inferred handedness on the last frames. This gives more robustness.
def __init__(self):
self._total_handedness = 0
self._nb = 0
def update(self, new_handedness):
self._total_handedness += new_handedness
self._nb += 1
return self._total_handedness / self._nb
def reset(self):
self._total_handedness = self._nb = 0
handedness_avg = [HandednessAverage(), HandednessAverage()]
nb_hands_in_previous_frame = 0
${_IF_USE_HANDEDNESS_AVERAGE}
single_hand_count = 0
# BufferMgr is used to statically allocate buffers once
# (replace dynamic allocation).
# These buffers are used for sending result to host
class BufferMgr:
def __init__(self):
self._bufs = {}
def __call__(self, size):
try:
buf = self._bufs[size]
except KeyError:
buf = self._bufs[size] = Buffer(size)
${_TRACE2} (f"New buffer allocated: {size}")
return buf
buffer_mgr = BufferMgr()
def send_result(result):
result_serial = marshal.dumps(result)
buffer = buffer_mgr(len(result_serial))
buffer.getData()[:] = result_serial
node.io['host'].send(buffer)
${_TRACE2} ("Manager sent result to host")
# pd_inf: boolean. Has the palm detection run on the frame ?
# nb_lm_inf: 0 or 1 (or 2 in duo mode). Number of landmark regression inferences on the frame.
# pd_inf=True and nb_lm_inf=0 means the palm detection hasn't found any hand
# pd_inf, nb_lm_inf are used for statistics
def send_result_no_hand(pd_inf, nb_lm_inf):
result = dict([("pd_inf", pd_inf), ("nb_lm_inf", nb_lm_inf)])
send_result(result)
def send_result_hands(pd_inf, nb_lm_inf, lm_score, handedness, rect_center_x, rect_center_y, rect_size, rotation, rrn_lms, sqn_lms, world_lms, xyz, xyz_zone):
result = dict([("pd_inf", pd_inf), ("nb_lm_inf", nb_lm_inf), ("lm_score", lm_score), ("handedness", handedness), ("rotation", rotation),
("rect_center_x", rect_center_x), ("rect_center_y", rect_center_y), ("rect_size", rect_size), ("rrn_lms", rrn_lms), ('sqn_lms', sqn_lms),
("world_lms", world_lms), ("xyz", xyz), ("xyz_zone", xyz_zone)])
send_result(result)
def rr2img(rrn_x, rrn_y):
# Convert a point (rrn_x, rrn_y) expressed in normalized rotated rectangle (rrn)
# into (X, Y) expressed in normalized image (sqn)
X = sqn_rr_center_x + sqn_rr_size * ((rrn_x - 0.5) * cos_rot + (0.5 - rrn_y) * sin_rot)
Y = sqn_rr_center_y + sqn_rr_size * ((rrn_y - 0.5) * cos_rot + (rrn_x - 0.5) * sin_rot)
return X, Y
def normalize_radians(angle):
return angle - 2 * pi * floor((angle + pi) / (2 * pi))
# send_new_frame_to_branch defines on which branch new incoming frames are sent
# 1 = palm detection branch
# 2 = hand landmark branch
send_new_frame_to_branch = 1
cfg_pre_pd = ImageManipConfig()
cfg_pre_pd.setResizeThumbnail(128, 128, 0, 0, 0)
id_wrist = 0
id_index_mcp = 5
id_middle_mcp = 9
id_ring_mcp =13
ids_for_bounding_box = [0, 1, 2, 3, 5, 6, 9, 10, 13, 14, 17, 18]
lm_input_size = 224
detected_hands = []
reuse_prev_image = False
while True:
nb_lm_inf = 0
if send_new_frame_to_branch == 1: # Routing frame to pd branch
hands = []
node.io['pre_pd_manip_cfg'].send(cfg_pre_pd)
${_TRACE2} ("Manager sent thumbnail config to pre_pd manip")
# Wait for pd post processing's result
detection = node.io['from_post_pd_nn'].get().getLayerFp16("result")
${_TRACE2} (f"Manager received pd result (len={len(detection)}) : "+str(detection))
# detection is list of 2x8 float
# Looping the detection twice to obtain data for 2 hands
for i in range(2):
pd_score, box_x, box_y, box_size, kp0_x, kp0_y, kp2_x, kp2_y = detection[i*8:(i+1)*8]
if pd_score >= ${_pd_score_thresh} and box_size > 0:
# scale_center_x = sqn_scale_x - sqn_rr_center_x
# scale_center_y = sqn_scale_y - sqn_rr_center_y
kp02_x = kp2_x - kp0_x
kp02_y = kp2_y - kp0_y
sqn_rr_size = 2.9 * box_size
rotation = 0.5 * pi - atan2(-kp02_y, kp02_x)
rotation = normalize_radians(rotation)
sqn_rr_center_x = box_x + 0.5*box_size*sin(rotation)
sqn_rr_center_y = box_y - 0.5*box_size*cos(rotation)
hands.append([sqn_rr_size, rotation, sqn_rr_center_x, sqn_rr_center_y])
${_TRACE1} (f"Palm detection - nb hands detected: {len(hands)}")
# If list is empty, meaning no hand is detected
if len(hands) == 0:
send_result_no_hand(True, 0)
send_new_frame_to_branch = 1
${_IF_USE_HANDEDNESS_AVERAGE}
nb_hands_in_previous_frame = 0
${_IF_USE_HANDEDNESS_AVERAGE}
continue
if not(nb_hands_in_previous_frame == 1 and len(hands) <= 1):
detected_hands = hands
else:
# otherwise detected_hands come from last frame
${_TRACE1} (f"Keep previous landmarks")
pass
# Constructing input data for landmark inference, the input data of both hands are sent for inference without
# waiting for inference results.
last_hand = len(detected_hands) - 1
for i,hand in enumerate(detected_hands):
sqn_rr_size, rotation, sqn_rr_center_x, sqn_rr_center_y = hand
# Tell pre_lm_manip how to crop hand region
rr = RotatedRect()
rr.center.x = sqn_rr_center_x
rr.center.y = (sqn_rr_center_y * frame_size - pad_h) / img_h
rr.size.width = sqn_rr_size
rr.size.height = sqn_rr_size * frame_size / img_h
rr.angle = degrees(rotation)
cfg = ImageManipConfig()
cfg.setCropRotatedRect(rr, True)
cfg.setResize(lm_input_size, lm_input_size)
${_IF_USE_SAME_IMAGE}
reuse_prev_image = True if len(detected_hands) > 1 and i == last_hand else False
cfg.setReusePreviousImage(reuse_prev_image)
${_IF_USE_SAME_IMAGE}
node.io['pre_lm_manip_cfg'].send(cfg)
nb_lm_inf += 1
${_TRACE2} (f"Manager sent config to pre_lm manip (reuse previous frame = {reuse_prev_image})")
hand_landmarks = dict([("lm_score", []), ("handedness", []), ("rotation", []),
("rect_center_x", []), ("rect_center_y", []), ("rect_size", []), ("rrn_lms", []), ('sqn_lms', []),
("world_lms", []), ("xyz", []), ("xyz_zone", [])])
updated_detect_hands = []
# Retrieve inference results in here for both hands
for ih, hand in enumerate(detected_hands):
sqn_rr_size, rotation, sqn_rr_center_x, sqn_rr_center_y = hand
# Wait for lm's result
lm_result = node.io['from_lm_nn'].get()
${_TRACE2} ("Manager received result from lm nn")
lm_score = lm_result.getLayerFp16("Identity_1")[0]
if lm_score > ${_lm_score_thresh}:
handedness = lm_result.getLayerFp16("Identity_2")[0]
rrn_lms = lm_result.getLayerFp16("Identity_dense/BiasAdd/Add")
world_lms = 0
${_IF_USE_WORLD_LANDMARKS}
world_lms = lm_result.getLayerFp16("Identity_3_dense/BiasAdd/Add")
${_IF_USE_WORLD_LANDMARKS}
# Retroproject landmarks into the original squared image
sqn_lms = []
cos_rot = cos(rotation)
sin_rot = sin(rotation)
for i in range(21):
rrn_lms[3*i] /= lm_input_size
rrn_lms[3*i+1] /= lm_input_size
rrn_lms[3*i+2] /= lm_input_size #* 0.4
sqn_x, sqn_y = rr2img(rrn_lms[3*i], rrn_lms[3*i+1])
sqn_lms += [sqn_x, sqn_y]
xyz = 0
xyz_zone = 0
# Query xyz
${_IF_XYZ}
conf_data = SpatialLocationCalculatorConfigData()
conf_data.depthThresholds.lowerThreshold = 100
conf_data.depthThresholds.upperThreshold = 10000
zone_size = max(int(sqn_rr_size * frame_size / 10), 8)
c_x = int(sqn_lms[0] * frame_size -zone_size/2 + crop_w)
c_y = int(sqn_lms[1] * frame_size -zone_size/2 - pad_h)
rect_center = Point2f(c_x, c_y)
rect_size = Size2f(zone_size, zone_size)
conf_data.roi = Rect(rect_center, rect_size)
cfg = SpatialLocationCalculatorConfig()
cfg.addROI(conf_data)
node.io['spatial_location_config'].send(cfg)
${_TRACE2} ("Manager sent ROI to spatial_location_config")
# Wait xyz response
xyz_data = node.io['spatial_data'].get().getSpatialLocations()
${_TRACE2} ("Manager received spatial_location")
coords = xyz_data[0].spatialCoordinates
xyz = [coords.x, coords.y, coords.z]
roi = xyz_data[0].config.roi
xyz_zone = [int(roi.topLeft().x - crop_w), int(roi.topLeft().y), int(roi.bottomRight().x - crop_w), int(roi.bottomRight().y)]
${_IF_XYZ}
hand_landmarks["lm_score"].append(lm_score)
hand_landmarks["handedness"].append(handedness)
hand_landmarks["rotation"].append(rotation)
hand_landmarks["rect_center_x"].append(sqn_rr_center_x)
hand_landmarks["rect_center_y"].append(sqn_rr_center_y)
hand_landmarks["rect_size"].append(sqn_rr_size)
hand_landmarks["rrn_lms"].append(rrn_lms)
hand_landmarks["sqn_lms"].append(sqn_lms)
hand_landmarks["world_lms"].append(world_lms)
hand_landmarks["xyz"].append(xyz)
hand_landmarks["xyz_zone"].append(xyz_zone)
# Calculate the ROI for next frame
# Compute rotation
x0 = sqn_lms[0]
y0 = sqn_lms[1]
x1 = 0.25 * (sqn_lms[2*id_index_mcp] + sqn_lms[2*id_ring_mcp]) + 0.5 * sqn_lms[2*id_middle_mcp]
y1 = 0.25 * (sqn_lms[2*id_index_mcp+1] + sqn_lms[2*id_ring_mcp+1]) + 0.5 * sqn_lms[2*id_middle_mcp+1]
rotation = 0.5 * pi - atan2(y0 - y1, x1 - x0)
rotation = normalize_radians(rotation)
# Find boundaries of landmarks
min_x = min_y = 1
max_x = max_y = 0
for id in ids_for_bounding_box:
min_x = min(min_x, sqn_lms[2*id])
max_x = max(max_x, sqn_lms[2*id])
min_y = min(min_y, sqn_lms[2*id+1])
max_y = max(max_y, sqn_lms[2*id+1])
axis_aligned_center_x = 0.5 * (max_x + min_x)
axis_aligned_center_y = 0.5 * (max_y + min_y)
cos_rot = cos(rotation)
sin_rot = sin(rotation)
# Find boundaries of rotated landmarks
min_x = min_y = 1
max_x = max_y = -1
for id in ids_for_bounding_box:
original_x = sqn_lms[2*id] - axis_aligned_center_x
original_y = sqn_lms[2*id+1] - axis_aligned_center_y
projected_x = original_x * cos_rot + original_y * sin_rot
projected_y = -original_x * sin_rot + original_y * cos_rot
min_x = min(min_x, projected_x)
max_x = max(max_x, projected_x)
min_y = min(min_y, projected_y)
max_y = max(max_y, projected_y)
projected_center_x = 0.5 * (max_x + min_x)
projected_center_y = 0.5 * (max_y + min_y)
center_x = (projected_center_x * cos_rot - projected_center_y * sin_rot + axis_aligned_center_x)
center_y = (projected_center_x * sin_rot + projected_center_y * cos_rot + axis_aligned_center_y)
width = (max_x - min_x)
height = (max_y - min_y)
sqn_rr_size = 2 * max(width, height)
sqn_rr_center_x = (center_x + 0.1 * height * sin_rot)
sqn_rr_center_y = (center_y - 0.1 * height * cos_rot)
hand[0] = sqn_rr_size
hand[1] = rotation
hand[2] = sqn_rr_center_x
hand[3] = sqn_rr_center_y
updated_detect_hands.append(hand)
detected_hands = updated_detect_hands
${_TRACE1} (f"Landmarks - nb hands confirmed : {len(detected_hands)}")
# Check that 2 detected hands do not correspond to the same hand in the image
# That may happen when one hand in the image cross another one
# A simple method is to assure that the center of the rotated rectangles are not too close
if len(detected_hands) == 2:
dist_rr_centers = dist([detected_hands[0][2], detected_hands[0][3]], [detected_hands[1][2], detected_hands[1][3]])
if dist_rr_centers < 0.02:
# Keep the hand with higher landmark score
if hand_landmarks["lm_score"][0] > hand_landmarks["lm_score"][1]:
pop_i = 1
else:
pop_i = 0
for k in hand_landmarks:
hand_landmarks[k].pop(pop_i)
detected_hands.pop(pop_i)
${_TRACE1} ("!!! Removing one hand because too close to the other one")
nb_hands = len(detected_hands)
${_IF_USE_HANDEDNESS_AVERAGE}
if send_new_frame_to_branch == 1 or nb_hands_in_previous_frame != nb_hands:
for i in range(2):
handedness_avg[i].reset()
${_TRACE2} (f"Reset handedness_avg")
# Replace current inferred handedness by the average handedness
for i in range(nb_hands):
hand_landmarks["handedness"][i] = handedness_avg[i].update(hand_landmarks["handedness"][i])
${_IF_USE_HANDEDNESS_AVERAGE}
# If the 2 hands have the same handedness, we discard the 2nd one
if nb_hands == 2 and (hand_landmarks["handedness"][0] - 0.5) * (hand_landmarks["handedness"][1] - 0.5) > 0:
for k in hand_landmarks:
hand_landmarks[k].pop(1)
nb_hands = 1
${_TRACE1} ("!!! Removing one hand because same handedness")
if nb_hands == 1:
single_hand_count += 1
else:
single_hand_count = 0
send_result_hands(send_new_frame_to_branch==1, nb_lm_inf, hand_landmarks["lm_score"], hand_landmarks["handedness"], hand_landmarks["rect_center_x"], hand_landmarks["rect_center_y"], hand_landmarks["rect_size"], hand_landmarks["rotation"], hand_landmarks["rrn_lms"], hand_landmarks["sqn_lms"], hand_landmarks["world_lms"], hand_landmarks["xyz"], hand_landmarks["xyz_zone"])
if nb_hands == 0:
send_new_frame_to_branch = 1
elif nb_hands == 1 and single_hand_count >= ${_single_hand_tolerance_thresh}:
send_new_frame_to_branch = 1
single_hand_count = 0
else:
send_new_frame_to_branch = 2
${_IF_USE_HANDEDNESS_AVERAGE}
nb_hands_in_previous_frame = nb_hands
${_IF_USE_HANDEDNESS_AVERAGE}