Package com.flir.thermalsdk.live.remote
Class MeasurementsController
java.lang.Object
com.flir.thermalsdk.live.remote.MeasurementsController
Camera measurement tools control and monitoring interface.
-
Method Summary
Modifier and TypeMethodDescriptionfinal Command2Args<RemoteCircle,
Point, Integer> Add and activate a new circle measurement tool to the camera's measurements.final Command2Args<RemoteLine,
Integer, Boolean> addLine()
Add and activate a new line measurement tool to the camera's measurements.final Command1Arg<RemoteRectangle,
Rectangle> Add and activate a new rectangle measurement tool to the camera's measurements at the given position with the given size.final Command1Arg<RemoteSpot,
Point> addSpot()
Add and activate a new spot measurement tool to the camera's measurements at the given position.final Property<ArrayList<RemoteCircle>>
circles()
Get a list of all active circle measurement tools on the camera.final Property<ArrayList<RemoteLine>>
lines()
Get a list of all active line measurement tools on the camera.final Property<ArrayList<RemoteRectangle>>
Get a list of all active rectangle measurement tools on the camera.final Command1Arg<Void,
RemoteShape> remove()
Remove/deactivate a particular measurement tool from the camera's measurements.Remove/deactivate all measurement tools from the camera's measurements.final Property<ArrayList<RemoteSpot>>
spots()
Get a list of all active spot measurement tools on the camera.
-
Method Details
-
addSpot
Add and activate a new spot measurement tool to the camera's measurements at the given position. Note: the Point parameter determines the position (x,y). -
addRectangle
Add and activate a new rectangle measurement tool to the camera's measurements at the given position with the given size. Note: the Rectangle parameter determines the position and the size of the rectangle. -
addCircle
Add and activate a new circle measurement tool to the camera's measurements. Note: the Point parameter determines the center of the circle. Note: the Integer parameter determines the circle radius. -
addLine
Add and activate a new line measurement tool to the camera's measurements. Note: the Integer parameter determines X (for vertical line) or Y (for horizontal line) coordinate. Note: the Boolean parameter determines if line is vertical (use 'false') or horizontal (use 'true'). -
remove
Remove/deactivate a particular measurement tool from the camera's measurements. -
removeAll
Remove/deactivate all measurement tools from the camera's measurements. -
spots
Get a list of all active spot measurement tools on the camera. Features: READ-ONLY. -
rectangles
Get a list of all active rectangle measurement tools on the camera. Features: READ-ONLY. -
circles
Get a list of all active circle measurement tools on the camera. Features: READ-ONLY. -
lines
Get a list of all active line measurement tools on the camera. Features: READ-ONLY.
-