Click or drag to resize
HumidityAlarm Class
The humidity isotherm can detect areas where there is a risk of mold growing, or where there is a risk of the humidity falling out as liquid water (i.e., the dew point).
Inheritance Hierarchy

Namespace: Flir.Atlas.Image.Alarms
Assembly: Flir.Atlas.Image (in Flir.Atlas.Image.dll) Version: 3.1
Syntax
C#
public class HumidityAlarm : Alarm

The HumidityAlarm type exposes the following members.

Methods
  NameDescription
Public methodCalculateRelativeHumidityAlarmTemperature
Calculates the relative humidity alarm temperature.
Public methodStatic memberCalculateRelativeHumidityAlarmTemperature(Double, Double, Double)
Calculates the relative humidity alarm temperature.
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Properties
  NameDescription
Public propertyAtmosphericTemperature
Gets or sets the atmospheric temperature in Kelvin.
Public propertyIsoCoverage
Gets or sets a value indicating whether [iso coverage].
(Inherited from Alarm.)
Public propertyIsoCoverageThreshold
Gets or sets the isotherm coverage threshold.
Public propertyIsoIndication
Gets or sets a value indicating whether [iso indication].
(Inherited from Alarm.)
Public propertyIsotherm
Gets or sets the isotherm identity.
(Overrides AlarmIsotherm.)
Public propertyMeasurmentRectangle
Gets or sets the measurement rectangle.
Public propertyName
Gets or sets the name.
(Inherited from Alarm.)
Public propertyRelativeAirHumidity
Gets or sets the relative air humidity.
Public propertyRelativeHumidityAlarmLevel
Gets or sets the relative humidity alarm level. Relative humidity alarm level (0.0 -- 1.0)
Top
Examples
C#
using Flir.Atlas.Image;
                 using (ThermalImageFile image = new ThermalImageFile())
                 {
                     HumidityAlarm alarm = image.Alarms.AddHumidityAlarms("Iso1", 20, 0.40, 0.70);
                     alarm.RelativeAirHumidity = 0.40;
                     alarm.AtmosphericTemperature = TemperatureConverter.CelsiusToKelvin(20);
                     alarm.RelativeHumidityAlarmLevel = 0.70;
                 }
See Also