onvif
    Preparing search index...

    Interface Exposure20

    Type describing the exposure settings.

    interface Exposure20 {
        exposureTime?: number;
        gain?: number;
        iris?: number;
        maxExposureTime?: number;
        maxGain?: number;
        maxIris?: number;
        minExposureTime?: number;
        minGain?: number;
        minIris?: number;
        mode: ExposureMode;
        priority?: ExposurePriority;
        window?: Rectangle;
    }
    Index
    exposureTime?: number

    The fixed exposure time used by the image sensor (μs).

    gain?: number

    The fixed gain used by the image sensor (dB).

    iris?: number

    The fixed attenuation of input light affected by the iris (dB). 0dB maps to a fully opened iris and positive values map to higher attenuation.

    maxExposureTime?: number

    Maximum value of exposure time range allowed to be used by the algorithm.

    maxGain?: number

    Maximum value of the sensor gain range that is allowed to be used by the algorithm.

    maxIris?: number

    Maximum value of the iris range allowed to be used by the algorithm. 0dB maps to a fully opened iris and positive values map to higher attenuation.

    minExposureTime?: number

    Minimum value of exposure time range allowed to be used by the algorithm.

    minGain?: number

    Minimum value of the sensor gain range that is allowed to be used by the algorithm.

    minIris?: number

    Minimum value of the iris range allowed to be used by the algorithm. 0dB maps to a fully opened iris and positive values map to higher attenuation.

    Exposure Mode

    Auto – Enabled the exposure algorithm on the device. Manual – Disabled exposure algorithm on the device.

    priority?: ExposurePriority

    The exposure priority mode (low noise/framerate).

    window?: Rectangle

    Rectangular exposure mask.