[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-05-07 UTC."],[],[],null,["# PoseLandmarkerOptions interface\n\n\u003cbr /\u003e\n\nOptions to configure the MediaPipe PoseLandmarker Task\n\n**Signature:** \n\n export declare interface PoseLandmarkerOptions extends VisionTaskOptions \n\n**Extends:** VisionTaskOptions\n\nProperties\n----------\n\n| Property | Type | Description |\n|--------------------------------------------------------------------------------------------------------------------|----------------------|------------------------------------------------------------------------------------------------------|\n| [minPoseDetectionConfidence](./tasks-vision.poselandmarkeroptions#poselandmarkeroptionsminposedetectionconfidence) | number \\| undefined | The minimum confidence score for the pose detection to be considered successful. Defaults to 0.5. |\n| [minPosePresenceConfidence](./tasks-vision.poselandmarkeroptions#poselandmarkeroptionsminposepresenceconfidence) | number \\| undefined | The minimum confidence score of pose presence score in the pose landmark detection. Defaults to 0.5. |\n| [minTrackingConfidence](./tasks-vision.poselandmarkeroptions#poselandmarkeroptionsmintrackingconfidence) | number \\| undefined | The minimum confidence score for the pose tracking to be considered successful. Defaults to 0.5. |\n| [numPoses](./tasks-vision.poselandmarkeroptions#poselandmarkeroptionsnumposes) | number \\| undefined | The maximum number of poses can be detected by the PoseLandmarker. Defaults to 1. |\n| [outputSegmentationMasks](./tasks-vision.poselandmarkeroptions#poselandmarkeroptionsoutputsegmentationmasks) | boolean \\| undefined | Whether to output segmentation masks. Defaults to false. |\n\nPoseLandmarkerOptions.minPoseDetectionConfidence\n------------------------------------------------\n\nThe minimum confidence score for the pose detection to be considered successful. Defaults to 0.5.\n\n**Signature:** \n\n minPoseDetectionConfidence?: number | undefined;\n\nPoseLandmarkerOptions.minPosePresenceConfidence\n-----------------------------------------------\n\nThe minimum confidence score of pose presence score in the pose landmark detection. Defaults to 0.5.\n\n**Signature:** \n\n minPosePresenceConfidence?: number | undefined;\n\nPoseLandmarkerOptions.minTrackingConfidence\n-------------------------------------------\n\nThe minimum confidence score for the pose tracking to be considered successful. Defaults to 0.5.\n\n**Signature:** \n\n minTrackingConfidence?: number | undefined;\n\nPoseLandmarkerOptions.numPoses\n------------------------------\n\nThe maximum number of poses can be detected by the PoseLandmarker. Defaults to 1.\n\n**Signature:** \n\n numPoses?: number | undefined;\n\nPoseLandmarkerOptions.outputSegmentationMasks\n---------------------------------------------\n\nWhether to output segmentation masks. Defaults to false.\n\n**Signature:** \n\n outputSegmentationMasks?: boolean | undefined;"]]