Alarm Class |
Namespace: Flir.Atlas.Image.Alarms
public abstract class Alarm
The Alarm type exposes the following members.
Name | Description | |
---|---|---|
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 | |
---|---|---|
IsoCoverage |
Gets or sets a value indicating whether [iso coverage].
| |
IsoIndication |
Gets or sets a value indicating whether [iso indication].
| |
Isotherm |
Gets or sets the isotherm corresponding to the alarm
| |
Name |
Gets or sets the name.
|
using Flir.Atlas.Image; using (ThermalImageFile image = new ThermalImageFile()) { image.Open(_existingFile); image.Alarms.ClearAll(); var hum = image.Alarms.AddHumidityAlarms("Name1", 20, 0.80, 0.56); image.Save(fileName); }