From 569c16db0b07de2666f39f8c49b32127c804d0f6 Mon Sep 17 00:00:00 2001 From: Kinar Date: Mon, 18 Dec 2023 04:37:29 -0800 Subject: [PATCH] Documented HolisticLandmarkerResult --- .../tasks/python/vision/holistic_landmarker.py | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/mediapipe/tasks/python/vision/holistic_landmarker.py b/mediapipe/tasks/python/vision/holistic_landmarker.py index a7a649974..27433c1d6 100644 --- a/mediapipe/tasks/python/vision/holistic_landmarker.py +++ b/mediapipe/tasks/python/vision/holistic_landmarker.py @@ -74,7 +74,19 @@ class HolisticLandmarkerResult: """The holistic landmarks result from HolisticLandmarker, where each vector element represents a single holistic detected in the image. Attributes: - TODO + face_landmarks: Detected face landmarks in normalized image coordinates. + pose_landmarks: Detected pose landmarks in normalized image coordinates. + pose_world_landmarks: Detected pose world landmarks in image coordinates. + left_hand_landmarks: Detected left hand landmarks in normalized image + coordinates. + left_hand_world_landmarks: Detected left hand landmarks in image + coordinates. + right_hand_landmarks: Detected right hand landmarks in normalized image + coordinates. + right_hand_world_landmarks: Detected right hand landmarks in image + coordinates. + face_blendshapes: Optional face blendshapes. + segmentation_mask: Optional segmentation mask for pose. """ face_landmarks: List[landmark_module.NormalizedLandmark] pose_landmarks: List[landmark_module.NormalizedLandmark]