Simprints Documentation
  • Introduction
    • Goals
    • Audience
    • Disclaimer
  • Product Overview
    • Product Overview
      • Simprints ID (SID)
        • Enrolment
        • Verification
        • Indentification
      • Biometrics
        • Fingerprints Recognition
          • Vero Fingerprint Scanners
        • Face Recognition
      • SID Intents Launcher
      • Cloud Backend
      • Data Collection Platforms
        • DHIS2
        • CommCare
        • ODK + Survey CTO
  • Architecture
    • System architecture
      • Mobile
        • Simprints ID (SID)
          • Project structure
          • Biometric flow orchestration
  • Installation
    • Installation, Quick Start and Device Requirements
      • Installation
      • Quick Start Guide
      • Device Requirements
  • Security & Privacy
    • Security & Privacy Considerations
      • Security Policy
      • Responsible Use
      • Privacy Policy
      • Cookie Policy
  • Development
    • Getting setup
    • Simprints for Developers
      • Simprints for Developers
      • Integrating with Simprints
        • Getting Started
        • Enrollment
        • Identification
        • Verification
        • Exit Forms
        • Confidence Score Bands
        • Enrolment & Identification +
        • Handling Errors
        • Metadata
      • Other Intergrations
        • ODK Integrations + SurveyCTO
          • Enrol
          • Identify
          • Verify
          • FAQ
        • CommCare Integration
          • CommCare: Enrolment
          • Identification
          • FAQs
          • ↔️CoSync
        • DHIS2
  • Troubleshooting
    • FAQs
    • Common Issues
  • Community & Support
    • Support Channels
    • Community Guidelines
    • Open Source Contributions
  • Product Roadmap
    • Product Roadmap
      • Current Releases
      • Previous Releases
      • Submit an Idea or Request
  • Licence
  • Contribution Guidelines
    • Contribution Guidelines
      • Code Contributions
      • Bug Reports
      • Feature Requests
  • Supporting Partners
Powered by GitBook
LogoLogo
On this page
  • Confidence score thresholds
  • Confidence Scores

Was this helpful?

Edit on GitHub
  1. Development
  2. Simprints for Developers
  3. Integrating with Simprints

Confidence Score Bands

Confidence score thresholds

Confidence bands and Decision policy are terms used to classify the degree to which an existing biometric template matches a currently captured one. Thus, this terms are used for Identification and Verification workflows.

The Decision Policy thresholds are configured in the project configuration in Simprints ID servers, and can be adjusted to affect the outcome of the resulting matched beneficiaries. Thus Simprints ID uses the specified thresholds to determine if a potential matching biometric record is worthy of being added to the candidate list.

The ConfidenceBand is an enum with 4 values indicating the rankings and can be accessed using the getConfidenceBand method of the Identification or Verification objects.


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

The confidence score is a numerical value that indicates the likelihood of a match. The returned number is dependent on the biometric modality selected. The confidence score adapts over time, as the match results become more accurate.


// accessing the value
val score = verification.confidence
PreviousExit FormsNextEnrolment & Identification +

Last updated 4 months ago

Was this helpful?