GSTargetFramingSetting

@objc
public protocol GSTargetFramingSetting

Objective-C version of the 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 }
  • Horizontal position in the video (relative position, from left (0.0) to right (1.0)).

    Declaration

    Swift

    var horizontalPosition: Double { get }
  • Vertical position in the video (relative position, from bottom (0.0) to top (1.0)).

    Declaration

    Swift

    var verticalPosition: Double { get }
  • Sets the 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

    func setValue(horizontal: Double, vertical: Double)