Interface DigitalGaugeDetectionParameters

Parameters for digital gauge detection and reading. In beta. Available only when the cdf-version: beta header is provided.

interface DigitalGaugeDetectionParameters {
    commaPos?: number;
    maxNumDigits?: number;
    minNumDigits?: number;
    threshold?: number;
}

Properties

commaPos?: number

Number of digits after comma in a digital gauge.

maxNumDigits?: number

Maximum number of digits on a digital gauge.

minNumDigits?: number

Minimum number of digits on a digital gauge.

threshold?: number

The confidence threshold returns predictions as positive if their confidence score is the selected value or higher. A higher confidence threshold increases precision but lowers recall, and vice versa.