tf-blazeface icon indicating copy to clipboard operation
tf-blazeface copied to clipboard

Tensorflow 2 BlazeFace implementation from scratch with complete training pipeline

Results 4 tf-blazeface issues
Sort by recently updated
recently updated
newest added

should the line 69 and 70 be swapped? gt_boxes = generate_bboxes_from_landmarks(gt_landmarks) gt_landmarks = filter_landmarks(gt_landmarks) The bounding box should be the bbox of filtered landmarks rather than the whole 68 landmarks,...

I tried use weights from mediapipe .tflite, but they have different kernel size (3,3). Are there any trained model to download and check if it's working?

add the following line. `actual_deltas = tf.where(tf.expand_dims(pos_cond, -1), actual_deltas, tf.zeros_like(actual_deltas))`. for prior_boxes are not all zeros. the clear zero action before bbox_utils.get_deltas_from_bboxes_and_landmarks was wasted.

Hello How are you? I've trained a model for detecting 6 keypoints and face bounding box. I used your project without any modification. I tested the model on some images...