MeasurementDelta Class |
Namespace: Flir.Atlas.Image.Measurements
public class MeasurementDelta : MeasurementShape
The MeasurementDelta 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.) | |
Offset |
Adjusts the location of this measurement shape by the specified amount.
(Inherited from MeasurementShape.) | |
ToString | Returns a string that represents the current object. (Inherited from Object.) |
Name | Description | |
---|---|---|
Identity |
Gets the identity on the measurement shape.
(Inherited from MeasurementShape.) | |
Measurement1 |
Gets the first measurement.
| |
Measurement2 |
Gets the second measurement.
| |
Name |
Gets or sets the name of the measurement shape.
(Inherited from MeasurementShape.) | |
ThermalParameters |
Gets the object parameters for this measurement shape.
(Inherited from MeasurementShape.) | |
Value |
Gets the value of this Delta.
| |
ValueMember1 |
Gets the first ValueMember.
| |
ValueMember2 |
Gets the second ValueMember.
|
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(); }