Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Detection Confidence #14

Open
iqbalnaved opened this issue Apr 26, 2017 · 1 comment
Open

Detection Confidence #14

iqbalnaved opened this issue Apr 26, 2017 · 1 comment

Comments

@iqbalnaved
Copy link

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

@jianchao-li
Copy link

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants