Interface HealthInsuranceCardRecognizerParameters

The live detection configuration parameters.

interface HealthInsuranceCardRecognizerParameters {
    acceptedCountries: HealthInsuranceCardCountryType[];
    maxAccumulatedFrameCount: number;
    maxBirthYear: number;
    maxCountryDetectionAttempts: number;
    maxExpirationYear: number;
    minBirthYear: number;
    minEqualFrameCount: number;
    minExpirationYear: number;
}

Properties

acceptedCountries: HealthInsuranceCardCountryType[]

List of allowed countries for the health insurance card recognizer.

maxAccumulatedFrameCount: number

Maximum number of partial frame results to keep in cache while waiting to gather minEqualFrameCount equal results.

maxBirthYear: number

Maximum of birth-year.

maxCountryDetectionAttempts: number

Maximum number of attempts before giving up on country detection.

maxExpirationYear: number

Maximum ranges of card-expiration-year.

minBirthYear: number

Minimum of birth-year.

minEqualFrameCount: number

Minimum number of accumulated frames that should have equal result for a field.

minExpirationYear: number

Minimum of card-expiration-year.