PoseLandmarkerOptions
class PoseLandmarkerOptions : TaskOptions, NSCopyingOptions for setting up a PoseLandmarker.
- 
                  
                  Running mode of the pose landmark dection task. Defaults to .image.PoseLandmarkercan be created with one of the following running modes:- .image: The mode for performing pose landmark detection on single image inputs.
- .video: The mode for performing pose landmark detection on the decoded frames of a video.
- .liveStream: The mode for performing pose 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 PoseLandmarkerLiveStreamDelegateprotocol. This object must implementposeLandmarker(_:didFinishDetectionWithResult:timestampInMilliseconds:error:)to receive the results of performing asynchronous pose landmark detection on images (i.e, whenrunningMode=.liveStream).DeclarationSwift weak var poseLandmarkerLiveStreamDelegate: PoseLandmarkerLiveStreamDelegate? { get set }
- 
                  
                  The maximum number of poses that can be detected by the PoseLandmarker. Defaults to 1.DeclarationSwift var numPoses: Int { get set }
- 
                  
                  The minimum confidence score for pose detection to be considered successful. Defaults to 0.5. DeclarationSwift var minPoseDetectionConfidence: Float { get set }
- 
                  
                  The minimum confidence score of pose presence score in the pose landmark detection. Defaults to 0.5. DeclarationSwift var minPosePresenceConfidence: Float { get set }
- 
                  
                  The minimum confidence score for pose tracking to be considered successful. Defaults to 0.5. DeclarationSwift var minTrackingConfidence: Float { get set }
- 
                  
                  Whether to output segmentation masks. Defaults to false.DeclarationSwift var shouldOutputSegmentationMasks: Bool { get set }