MPPHandLandmarkerOptions
@interface MPPHandLandmarkerOptions : MPPTaskOptions <NSCopying>Options 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.
 DeclarationObjective-C @property (nonatomic) MPPRunningMode runningMode;
- 
                  
                  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).DeclarationObjective-C @property (nonatomic, weak, nullable) id<MPPHandLandmarkerLiveStreamDelegate> handLandmarkerLiveStreamDelegate;
- 
                  
                  The maximum number of hands that can be detected by the HandLandmarker.DeclarationObjective-C @property (nonatomic) NSInteger numHands;
- 
                  
                  The minimum confidence score for the hand detection to be considered successful. DeclarationObjective-C @property (nonatomic) float minHandDetectionConfidence;
- 
                  
                  The minimum confidence score of hand presence score in the hand landmark detection. DeclarationObjective-C @property (nonatomic) float minHandPresenceConfidence;
- 
                  
                  The minimum confidence score for the hand tracking to be considered successful. DeclarationObjective-C @property (nonatomic) float minTrackingConfidence;