HandDetectorState

data class HandDetectorState(    val isLoaded: Boolean,     val isLoading: Boolean,     val downloadOperations: List<DownloadOperation> = emptyList())

Contains all the information about the hand detector.

Parameters

isLoaded

True if the hand detector is loaded and ready to be used.

isLoading

True if the hand detector is downloaded and it is being applied.

downloadOperations

TensorFlow (Neural Network) model downloads.

Constructors

Link copied to clipboard
fun HandDetectorState(    isLoaded: Boolean,     isLoading: Boolean,     downloadOperations: List<DownloadOperation> = emptyList())

Properties

Link copied to clipboard
val downloadOperations: List<DownloadOperation>
Link copied to clipboard
val isLoaded: Boolean
Link copied to clipboard
val isLoading: Boolean