match

abstract fun match(referenceFaceImage: FaceImage, probeFaceImage: FaceImage): FaceMatcher.Result

Match the probe face image against the reference face image.

Return

Matching score.

Parameters

referenceFaceImage

Face image.

probeFaceImage

Face image.

Throws

If verification module is not activated.

If matching is not possible to evaluate.


abstract fun match(referenceTemplate: Template, probeFaceImage: FaceImage): FaceMatcher.Result

Match the probe face image against the reference template.

Return

Matching result.

Parameters

referenceTemplate

Reference template.

probeFaceImage

Probe face image.

Throws

If verification module is not activated.

If matching is not possible to evaluate.


abstract fun match(referenceTemplateBytes: ByteArray, probeFaceImage: FaceImage): FaceMatcher.Result

Match the probe face image against the reference template.

Return

Matching result.

Parameters

referenceTemplateBytes

Reference template bytes.

probeFaceImage

Probe face image.

Throws

If verification module is not activated.

If matching is not possible to evaluate.