HandLandmarkerOptions
class HandLandmarkerOptions : TaskOptions, NSCopyingOptions for setting up a HandLandmarker.
- 
                  
                  Running mode of the hand landmarker task. Defaults to .image.HandLandmarkercan be created with one of the following running modes:- image: The mode for performing hand landmark detection on single image inputs.
- video: The mode for performing hand landmark detection on the decoded frames of a video.
- liveStream: The mode for performing hand landmark detection on a live stream of input data, such as from the camera.
 DeclarationSwift var runningMode: RunningMode { get set }
- 
                  
                  An object that confirms to HandLandmarkerLiveStreamDelegateprotocol. This object must implementhandLandmarker:didFinishDetectionWithResult:timestampInMilliseconds:error:to receive the results of performing asynchronous hand landmark detection on images (i.e, whenrunningMode=.liveStream).DeclarationSwift weak var handLandmarkerLiveStreamDelegate: HandLandmarkerLiveStreamDelegate? { get set }
- 
                  
                  The maximum number of hands that can be detected by the HandLandmarker.DeclarationSwift var numHands: Int { get set }
- 
                  
                  The minimum confidence score for the hand detection to be considered successful. DeclarationSwift var minHandDetectionConfidence: Float { get set }
- 
                  
                  The minimum confidence score of hand presence score in the hand landmark detection. DeclarationSwift var minHandPresenceConfidence: Float { get set }
- 
                  
                  The minimum confidence score for the hand tracking to be considered successful. DeclarationSwift var minTrackingConfidence: Float { get set }