Class AreaDimensions

java.lang.Object
com.flir.thermalsdk.image.measurements.AreaDimensions

public class AreaDimensions extends Object
Describes area calculation for specified measurement tool. Note: Some fields are only applicable for specific measurement tools. See description for each field for details. Note: When field is unapplicable for a specified measurement type, field's value will evaluate to default value of 0.0.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    final double
    Area dimension value - only applicable for rectangle and circle (evaluates to 0.0 for other types).
    final double
    Height dimension value - only applicable for rectangle (evaluates to 0.0 for other types).
    final double
    Length dimension value - only applicable for line (evaluates to 0.0 for other types).
    final double
    Radius dimension value - only applicable for circle (evaluates to 0.0 for other types).
    final boolean
    Dimension status - true when calculation is valid and accurate, otherwise false.
    final double
    Width dimension value - only applicable for rectangle (evaluates to 0.0 for other types).
  • Method Summary

    Modifier and Type
    Method
    Description
     

    Methods inherited from class java.lang.Object

    equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • Field Details

    • area

      public final double area
      Area dimension value - only applicable for rectangle and circle (evaluates to 0.0 for other types).
    • height

      public final double height
      Height dimension value - only applicable for rectangle (evaluates to 0.0 for other types).
    • width

      public final double width
      Width dimension value - only applicable for rectangle (evaluates to 0.0 for other types).
    • length

      public final double length
      Length dimension value - only applicable for line (evaluates to 0.0 for other types).
    • radius

      public final double radius
      Radius dimension value - only applicable for circle (evaluates to 0.0 for other types).
    • valid

      public final boolean valid
      Dimension status - true when calculation is valid and accurate, otherwise false.
  • Method Details