Face Authentication Results
FaceMatchResults
data class FaceMatchResults(
val first: Bitmap? = null,
val second: Bitmap? = null,
val similarity: Double? = null,
val score: Double? = null
)
Interpreting similarity
| Range | Recommendation |
|---|---|
>= 0.90 | High-confidence match ✅ |
0.75 – 0.89 | Probable match — apply additional context checks |
< 0.75 | No match ❌ |
Liveness-only results
onLivenessOnlyResults = { capturedFrames: List<Bitmap> ->
}
Fraud lockout
After repeated spoof detections the SDK enters a timed lockout. Configure via:
FaceAuthConfigurationBuilder.setFraudDefenseSettings(
maxAttempts = 3,
lockoutDurationMs = 300_000L
)