QualityMonitoringNrIqaSettings type

NR-IQA (no-reference image quality assessment) configuration. Pick exactly one model. The Spectrum preprocessor builds whatever per-scale ImageNet-normalised RGB float32 tensors the chosen model needs (DBCNN: a single 224²; LAR-IQA: 384² + 1280²; MUSIQ: 224² + 384² + 640²).

scoreThreshold is interpreted on the common normalised [0..100] scale, regardless of the model’s native output range.

Signature:

export type QualityMonitoringNrIqaSettings = {
    kind: "larIqa";
    config: NrIqaModelSettings;
} | {
    kind: "dbcnn";
    config: NrIqaModelSettings;
} | {
    kind: "musiq";
    config: NrIqaModelSettings;
};

References: NrIqaModelSettings