TargetFramingSetting

public protocol TargetFramingSetting : AnyObject

Target framing setting.

Allows to configure positioning of the tracked target in the drone video stream.

  • Whether the setting is currently updating.

    Declaration

    Swift

    var updating: Bool { get }
  • Position of the desired target in frame.

    • horizontal: horizontal position in the video (relative position, from left (0.0) to right (1.0) )
    • vertical: vertical position in the video (relative position, from bottom (0.0) to top (1.0) )

    Declaration

    Swift

    var value: (horizontal: Double, vertical: Double) { get set }