Package-level declarations

Types

Link copied to clipboard
data class CameraDetails(val facing: CameraLensFacing, val focusType: FocusType, val resolutions: List<Size>)

Data class containing detailed information about a specific camera device.

Link copied to clipboard
data class CameraDevicesDetails(val numberOfDevices: Int, val devicesDetails: List<CameraDetails>)

Data class containing comprehensive information about all cameras on the device.

Link copied to clipboard

Utility object for collecting comprehensive camera hardware information from the device.

Link copied to clipboard
data class CameraInputDetails(val cameraFacing: CameraLensFacing, val cameraFrameWidth: Int, val cameraFrameHeight: Int, val viewPortAspectRatio: Double, val roiWidth: Int, val roiHeight: Int)

Class representing camera input information for image analysis.

Link copied to clipboard

Enum representing whether the front or the back camera is being used.

Link copied to clipboard
data class CameraSettings(val lensFacing: CameraLensFacing = CameraLensFacing.LensFacingBack, val desiredResolution: Resolution = Resolution.Resolution2160p)

Configuration settings for the camera used in the verification process.

Link copied to clipboard
abstract class CameraViewModel : ViewModel
Link copied to clipboard

Camera focus type indicating autofocus capability.

Link copied to clipboard

An interface that represents the features of Microblink's analyzer.

Link copied to clipboard

Enum representing the camera resolution that is being used.