Click or drag to resize
IsothermBelow Class
IsothermBelow is colorizing pixels below 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 IsothermBelow : Isotherm

The IsothermBelow 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 below 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.AddBelow();
}
See Also