VideoCaptureFormat

data class VideoCaptureFormat(val width: Int, val height: Int, val maxFps: Int)

VideoCaptureFormat describes a given capture format that can be set to a VideoCaptureSource. Note that VideoCaptureSource implementations may ignore or adjust unsupported values.

Constructors

Link copied to clipboard
constructor(width: Int, height: Int, maxFps: Int)

Properties

Link copied to clipboard
val height: Int

Capture height

Link copied to clipboard
val maxFps: Int

Max FPS. When used as input this implies the desired FPS as well

Link copied to clipboard
val width: Int

Capture width

Functions

Link copied to clipboard
open override fun toString(): String