Click or drag to resize
MeasurementDelta Class
This class represents a Delta measurement object.
Inheritance Hierarchy

Namespace: Flir.Atlas.Image.Measurements
Assembly: Flir.Atlas.Image (in Flir.Atlas.Image.dll) Version: 3.1
Syntax
C#
public class MeasurementDelta : MeasurementShape

The MeasurementDelta type exposes the following members.

Methods
  NameDescription
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 methodOffset
Adjusts the location of this measurement shape by the specified amount.
(Inherited from MeasurementShape.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Properties
  NameDescription
Public propertyIdentity
Gets the identity on the measurement shape.
(Inherited from MeasurementShape.)
Public propertyMeasurement1
Gets the first measurement.
Public propertyMeasurement2
Gets the second measurement.
Public propertyName
Gets or sets the name of the measurement shape.
(Inherited from MeasurementShape.)
Public propertyThermalParameters
Gets the object parameters for this measurement shape.
(Inherited from MeasurementShape.)
Public propertyValue
Gets the value of this Delta.
Public propertyValueMember1
Gets the first ValueMember.
Public propertyValueMember2
Gets the second ValueMember.
Top
Examples
C#
using Flir.Atlas.Image;

using (ThermalImageFile image = new ThermalImageFile(File))
{            
       var tmp = image.Measurements;
       //add a delta from MeasurementRectangle max to MeasurementEllipses min in the image
       var delta = tmp.Add(image.Measurements.MeasurementRectangles[0].Name, ValueMember.Max,
           image.Measurements.MeasurementEllipses[0].Name, ValueMember.Min);

       //add a delta from the ReferenceTemperature to MeasurementEllipses min in the image
       var delta2 = tmp.Add("ReferenceTemperature", ValueMember.Max,
          image.Measurements.MeasurementEllipses[0].Name, ValueMember.Min);

       image.Save();
}
See Also