IFaceRecognition

Face recognition

Package com.appliedrec.verid.core2

public interface IFaceRecognition

Methods

getAuthenticationThreshold

Introduced in version 1.0.0

public getAuthenticationThreshold()

Returns

float
Similarity score threshold beyond which two faces are considered similar enough to be of the same person.

See also

setAuthenticationThreshold

Introduced in version 1.0.0

public setAuthenticationThreshold(float)

Set authentication score threshold.

Parameters

threshold float
Similarity score threshold

See also

compareSubjectFacesToFaces

Introduced in version 1.0.0

public compareSubjectFacesToFaces(IRecognizable[], RecognizableFace[])

Compare a face or a multi-face subject to an array of faces.

Parameters

subjectFaces com.appliedrec.verid.core2.IRecognizable[]
The subject faces to compare to the other faces
faces com.appliedrec.verid.core2.RecognizableFace[]
Faces to compare to the subject faces

Returns

float
Similarity score

Throws

java.lang.Exception
if the comparison fails

createRecognizableFacesFromFaces

Introduced in version 1.0.0

public createRecognizableFacesFromFaces(Face[], VerIDImage)

Create faces that can be used for face recognition from faces.

Parameters

faces com.appliedrec.verid.core2.Face[]
Faces to use as source
image com.appliedrec.verid.core2.VerIDImage
Image in which the faces were detected

Returns

com.appliedrec.verid.core2.RecognizableFace[]
Array of faces that can be used for face recognition

Throws

java.lang.Exception
if the creation fails