[[["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,["# PoseLandmarkerResult class\n\n\u003cbr /\u003e\n\nRepresents the pose landmarks deection results generated by `PoseLandmarker`. Each vector element represents a single pose detected in the image.\n\n**Signature:** \n\n export declare class PoseLandmarkerResult \n\nConstructors\n------------\n\n| Constructor | Modifiers | Description |\n|------------------------------------------------------------------------------------------------------------------------------------|-----------|---------------------------------------------------------------|\n| [(constructor)(landmarks, worldLandmarks, segmentationMasks)](./tasks-vision.poselandmarkerresult#poselandmarkerresultconstructor) | | Constructs a new instance of the `PoseLandmarkerResult` class |\n\nProperties\n----------\n\n| Property | Modifiers | Type | Description |\n|------------------------------------------------------------------------------------------------|-----------|----------------------------------------------------------------------------------------------|--------------------------------------------------------|\n| [landmarks](./tasks-vision.poselandmarkerresult#poselandmarkerresultlandmarks) | | [NormalizedLandmark](./tasks-vision.normalizedlandmark#normalizedlandmark_interface)\\[\\]\\[\\] | Pose landmarks of detected poses. |\n| [segmentationMasks](./tasks-vision.poselandmarkerresult#poselandmarkerresultsegmentationmasks) | | [MPMask](./tasks-vision.mpmask#mpmask_class)\\[\\] \\| undefined | Segmentation mask for the detected pose. |\n| [worldLandmarks](./tasks-vision.poselandmarkerresult#poselandmarkerresultworldlandmarks) | | [Landmark](./tasks-vision.landmark#landmark_interface)\\[\\]\\[\\] | Pose landmarks in world coordinates of detected poses. |\n\nMethods\n-------\n\n| Method | Modifiers | Description |\n|--------------------------------------------------------------------------|-----------|-----------------------------------------------------|\n| [close()](./tasks-vision.poselandmarkerresult#poselandmarkerresultclose) | | Frees the resources held by the segmentation masks. |\n\nPoseLandmarkerResult.(constructor)\n----------------------------------\n\nConstructs a new instance of the `PoseLandmarkerResult` class\n\n**Signature:** \n\n constructor(\n landmarks: NormalizedLandmark[][], \n worldLandmarks: Landmark[][], \n segmentationMasks?: MPMask[] | undefined);\n\n### Parameters\n\n| Parameter | Type | Description |\n|-------------------|----------------------------------------------------------------------------------------------|-------------|\n| landmarks | [NormalizedLandmark](./tasks-vision.normalizedlandmark#normalizedlandmark_interface)\\[\\]\\[\\] | |\n| worldLandmarks | [Landmark](./tasks-vision.landmark#landmark_interface)\\[\\]\\[\\] | |\n| segmentationMasks | [MPMask](./tasks-vision.mpmask#mpmask_class)\\[\\] \\| undefined | |\n\nPoseLandmarkerResult.landmarks\n------------------------------\n\nPose landmarks of detected poses.\n\n**Signature:** \n\n readonly landmarks: NormalizedLandmark[][];\n\nPoseLandmarkerResult.segmentationMasks\n--------------------------------------\n\nSegmentation mask for the detected pose.\n\n**Signature:** \n\n readonly segmentationMasks?: MPMask[] | undefined;\n\nPoseLandmarkerResult.worldLandmarks\n-----------------------------------\n\nPose landmarks in world coordinates of detected poses.\n\n**Signature:** \n\n readonly worldLandmarks: Landmark[][];\n\nPoseLandmarkerResult.close()\n----------------------------\n\nFrees the resources held by the segmentation masks.\n\n**Signature:** \n\n close(): void;\n\n**Returns:**\n\nvoid"]]