onvif
    Preparing search index...

    Interface RadiometryGlobalParameters

    Holds default values that will be used in measurement modules when local parameters are not specified for the module (these are still required for valid temperature calculations). Having ReflectedAmbientTemperature, Emissivity and DistanceToObject as mandatory ensures minimum parameters are available to obtain valid temperature values.

    interface RadiometryGlobalParameters {
        atmosphericTemperature?: number;
        atmosphericTransmittance?: number;
        distanceToObject: number;
        emissivity: number;
        extOpticsTemperature?: number;
        extOpticsTransmittance?: number;
        reflectedAmbientTemperature: number;
        relativeHumidity?: number;
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown
    Index
    atmosphericTemperature?: number

    Temperature of the atmosphere between the thermal device and the object being measured.

    atmosphericTransmittance?: number

    Transmittance value for the atmosphere between the thermal device and the object being measured.

    distanceToObject: number

    Distance from the thermal device to the measured object.

    emissivity: number

    Emissivity of the surface of the object on which temperature is being measured.

    extOpticsTemperature?: number

    Temperature of the optics elements between the thermal device and the object being measured.

    extOpticsTransmittance?: number

    Transmittance value for the optics elements between the thermal device and the object being measured.

    reflectedAmbientTemperature: number

    Reflected Ambient Temperature for the environment in which the thermal device and the object being measured is located.

    relativeHumidity?: number

    Relative Humidity in the environment in which the measurement is located.