以下からdepthai_hand_trackerをダウンロードして動かしています。
https://github.com/geaxgx/depthai_hand_tracker/blob/main/README.md
ソースをみていて、理解できないところがあります。
mediapipe_utils.pyの中に「generate_handtracker_anchors」があります。
def generate_handtracker_anchors():
# https://github.com/google/mediapipe/blob/master/mediapipe/modules/palm_detection/palm_detection_cpu.pbtxt
anchor_options = SSDAnchorOptions(num_layers=4,
min_scale=0.1484375,
max_scale=0.75,
input_size_height=128,
input_size_width=128,
anchor_offset_x=0.5,
anchor_offset_y=0.5,
strides=[8, 16, 16, 16],
aspect_ratios= [1.0],
reduce_boxes_in_lowest_layer=False,
interpolated_scale_aspect_ratio=1.0,
fixed_anchor_size=True)
return generate_anchors(anchor_options)
これをどのように使って、結果どのようなことができるのか理解したい(SSDAnchorOptions)
SSDAnchorOptionsへの入力と出力についての詳細
今、HandTracker.pyの
self.anchors = mpu.generate_handtracker_anchors()を見ています。
よろしくお願いいたします。
回答1件
あなたの回答
tips
プレビュー