Skip to main content

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

RangeRecommendation
>= 0.90High-confidence match ✅
0.75 – 0.89Probable match — apply additional context checks
< 0.75No 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
)