Click or drag to resize
IsothermAbove Class
IsothermAbove is colorizing pixels above a threshold.
Inheritance Hierarchy

Namespace: Flir.Atlas.Image.Isotherms
Assembly: Flir.Atlas.Image (in Flir.Atlas.Image.dll) Version: 3.1
Syntax
C#
public class IsothermAbove : Isotherm

The IsothermAbove type exposes the following members.

Methods
  NameDescription
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Public methodGetAboveValue
Gets the value for above.
(Inherited from Isotherm.)
Public methodGetBelowValue
Gets the value for below.
(Inherited from Isotherm.)
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetIntervalMinMaxValues
Gets minimum and maximum values for interval.
(Inherited from Isotherm.)
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 propertyAppearance
Gets or sets the apperance of the isotherm.
(Inherited from Isotherm.)
Public propertyColor
Gets or sets the color of the isotherm.
(Inherited from Isotherm.)
Public propertyContrastColor
Gets or sets the contrast color of the isotherm.
(Inherited from Isotherm.)
Public propertyIsothermType
Gets or sets the isotherm type.
(Inherited from Isotherm.)
Public propertyThreshold
Values above the threshold is colorized with the selected isotherm color.
Top
Examples
C#
using Flir.Atlas.Image;
namespace MyNamespace
{
   ThermalImageFile _image;
    _image = new ThermalImageFile(FileName);
   IsothermAbove isotherm1 = _image.Isotherms.AddAbove();
}
See Also