MTCNN_face_detection_alignment
MTCNN_face_detection_alignment copied to clipboard
Detection Confidence
Hi, is there any variable in the detection function that we can use as face detection confidence ? Please inform. Thanks in advance.
@iqbalnaved prob1
in all the three networks (det1.prototxt
, det2.prototxt
and det3.prototxt
) can be used as the face detection confidence. prob1
corresponds to the following codes in detect_face.m
:
-
det1.prototxt
(out{2}
)
boxes=generateBoundingBox(out{2}(:,:,2),out{1},scale,threshold(1));
-
det2.prototxt
(out{2}
)
score=squeeze(out{2}(2,:));
-
det3.prototxt
(out{3}
)
score=squeeze(out{3}(2,:));