Hand Detector State
data class HandDetectorState( val isLoaded: Boolean, val isLoading: Boolean, val downloadOperations: List<DownloadOperation> = emptyList())
Content copied to clipboard
Contains all the information about the hand detector.
Parameters
is Loaded
True if the hand detector is loaded and ready to be used.
is Loading
True if the hand detector is downloaded and it is being applied.
download Operations
TensorFlow (Neural Network) model downloads.
Constructors
Link copied to clipboard
fun HandDetectorState( isLoaded: Boolean, isLoading: Boolean, downloadOperations: List<DownloadOperation> = emptyList())
Content copied to clipboard