CameraExposureLockMode

public enum CameraExposureLockMode : Equatable, CustomStringConvertible

Camera exposure lock mode.

  • No exposure lock.

    Declaration

    Swift

    case none
  • Lock current exposure values.

    Declaration

    Swift

    case currentValues
  • Lock exposure on a given region of interest (taken from the video stream).

    • centerX: center X position of the region in the video (relative position, from left (0.0) to right (1.0))
    • centerY: center Y position of the region in the video (relative position, from bottom (0.0) to top (1.0))
    • width: width of the region (relative to the video stream width, from 0.0 to 1.0)
    • height: height of the region (relative to the video stream height, from 0.0 to 1.0)

    Declaration

    Swift

    case region(centerX: Double, centerY: Double, width: Double, height: Double)
  • Debug description.

    Declaration

    Swift

    public var description: String { get }
  • Declaration

    Swift

    public static func == (lhs: CameraExposureLockMode, rhs: CameraExposureLockMode) -> Bool