CameraData

Represents the data and capabilities of a specific camera configuration.

This class encapsulates properties such as resolution (width, height), frame rate ranges, focus support, and video stabilization capabilities. It is used to describe the specific formats supported by a camera device.

Parameters

width

The width of the camera resolution in pixels.

height

The height of the camera resolution in pixels.

isFocusSupported

Indicates if autofocus is supported for this camera configuration.

minFps

The minimum frames per second supported, or null if not applicable.

maxFps

The maximum frames per second supported, or null if not applicable.

videoStabilizationModes

A list of supported video stabilization modes, or null if none.

Properties

Link copied to clipboard
val height: Int
Link copied to clipboard
Link copied to clipboard
val maxFps: Int?
Link copied to clipboard
val minFps: Int?
Link copied to clipboard
val width: Int

Functions

Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
open override fun hashCode(): Int
Link copied to clipboard
Link copied to clipboard
open override fun toString(): String