Confidence Score Bands
Confidence score thresholds
enum class ConfidenceBand {
HIGH, // Almost certainly a match (the biometrics are very similar)
MEDIUM, // Possible match
LOW, // Not a match (the biometrics are very different)
NONE, // Confidence is below "Low" (likely a capture error)
}Confidence Scores
// accessing the value
val score = verification.confidenceLast updated
Was this helpful?