MTCNN_face_detection_alignment icon indicating copy to clipboard operation
MTCNN_face_detection_alignment copied to clipboard

Detection Confidence

Open iqbalnaved opened this issue 7 years ago • 1 comments

Hi, is there any variable in the detection function that we can use as face detection confidence ? Please inform. Thanks in advance.

iqbalnaved avatar Apr 26 '17 23:04 iqbalnaved

@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,:));

jianchao-li avatar Jun 19 '18 03:06 jianchao-li