Interface LevelGaugeDetectionParameters

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

interface LevelGaugeDetectionParameters {
    maxLevel?: number;
    minLevel?: number;
    threshold?: number;
}

Properties

maxLevel?: number

The max value of the gauge.

minLevel?: number

The min value of the 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.