MeasurementRectangle Class |
Namespace: Flir.Atlas.Image.Measurements
public class MeasurementRectangle : MeasurementShape
The MeasurementRectangle 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.
(Overrides MeasurementShapeOffset(Point).) | |
ToString | Returns a string that represents the current object. (Inherited from Object.) |
Name | Description | |
---|---|---|
Average |
Gets the average value of this MeasurementRectangle.
| |
ColdSpot |
Point in the area
| |
Height |
Gets or sets the height of this MeasurementRectangle.
| |
HotSpot |
Point in the area
| |
Identity |
Gets the identity on the measurement shape.
(Inherited from MeasurementShape.) | |
IsColdSpotMarkerVisible |
Marker is visible
| |
IsHotSpotMarkerVisible |
Marker is visible
| |
Location |
Gets or sets the location of this MeasurementRectangle.
| |
Max |
Gets the maximum value of this MeasurementRectangle.
| |
Min |
Gets the minimum value of this MeasurementRectangle.
| |
Name |
Gets or sets the name of the measurement shape.
(Inherited from MeasurementShape.) | |
Rectangle |
Gets or sets the rectangle area of this MeasurementRectangle.
| |
ThermalParameters |
Gets the object parameters for this measurement shape.
(Inherited from MeasurementShape.) | |
Width |
Gets or sets the width of this MeasurementRectangle.
|
using Flir.Atlas.Image; using (ThermalImageFile image = new ThermalImageFile(File)) { //add and remove MeasurementRectangle rectangle = image.Measurements.Add(new Rectangle(10, 10, 70, 50)); image.Measurements.Remove(rectangle); }