HumidityAlarm Class |
Namespace: Flir.Atlas.Image.Alarms
public class HumidityAlarm : Alarm
The HumidityAlarm type exposes the following members.
Name | Description | |
---|---|---|
CalculateRelativeHumidityAlarmTemperature |
Calculates the relative humidity alarm temperature.
| |
CalculateRelativeHumidityAlarmTemperature(Double, Double, Double) |
Calculates the relative humidity alarm temperature.
| |
Equals | (Inherited from Object.) | |
GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) | |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
ToString | Returns a string that represents the current object. (Inherited from Object.) |
Name | Description | |
---|---|---|
AtmosphericTemperature |
Gets or sets the atmospheric temperature in Kelvin.
| |
IsoCoverage |
Gets or sets a value indicating whether [iso coverage].
(Inherited from Alarm.) | |
IsoCoverageThreshold |
Gets or sets the isotherm coverage threshold.
| |
IsoIndication |
Gets or sets a value indicating whether [iso indication].
(Inherited from Alarm.) | |
Isotherm |
Gets or sets the isotherm identity.
(Overrides AlarmIsotherm.) | |
MeasurmentRectangle |
Gets or sets the measurement rectangle.
| |
Name |
Gets or sets the name.
(Inherited from Alarm.) | |
RelativeAirHumidity |
Gets or sets the relative air humidity.
| |
RelativeHumidityAlarmLevel |
Gets or sets the relative humidity alarm level.
Relative humidity alarm level (0.0 -- 1.0)
|
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; }