CameraParameters

class CameraParameters : NSObject

Intrinsic camera parameters representing the source of video frames.

  • Declaration

    Swift

    init(width: Int, height: Int, focalXPixels: Float, focalYPixels: Float)
  • Current camera output width in pixels

    Declaration

    Swift

    var width: Int { get }
  • Current camera output height in pixels

    Declaration

    Swift

    var height: Int { get }
  • Focal length in pixels by width

    Declaration

    Swift

    var focalXPixels: Float { get }
  • Focal length in pixels by height

    Declaration

    Swift

    var focalYPixels: Float { get }