scoring #246
-
for FaceResult what is the difference between: score, boxScore and faceScore? more specifically, when detecting a face which is used to determine the quality of the detection? Especially if used for later similarity calculations. The use case here is enrolling a face via detect, make sure it is a fairly good match (score or boxScore or faceScore above required threshold?). Then later using the enrolled embedding to determine similarity . . . |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
now, you could enroll face in similarity calc without ever running through
neither are not required, but they do help to determine better face descriptors which are used for similarity checks. |
Beta Was this translation helpful? Give feedback.
-
Hi @vladmandic, |
Beta Was this translation helpful? Give feedback.
boxScore
is score of face detection in overall input.faceScore
is score of face keypoint detection in cropped face and can be missing iffacemesh
model is disabled.score
is simplyfaceScore
if its available and if not, thenboxScore
.now, you could enroll face in similarity calc without ever running through
facemesh
,but running through
facemesh
does have two advantages:rotation
is enabled in config)neither are not required, but they do help to determine better face descriptors which are used for similarity checks.