From f315b138de80b6952259ee53dfeaeb6ebe06a400 Mon Sep 17 00:00:00 2001 From: Kinar Date: Tue, 19 Dec 2023 12:27:33 -0800 Subject: [PATCH] Resolved some issues --- mediapipe/tasks/python/vision/holistic_landmarker.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/mediapipe/tasks/python/vision/holistic_landmarker.py b/mediapipe/tasks/python/vision/holistic_landmarker.py index 27433c1d6..5539fc3eb 100644 --- a/mediapipe/tasks/python/vision/holistic_landmarker.py +++ b/mediapipe/tasks/python/vision/holistic_landmarker.py @@ -336,7 +336,7 @@ class HolisticLandmarkerOptions: holistic_landmarker_options_proto.pose_detector_graph_options.min_suppression_threshold = ( self.min_pose_suppression_threshold ) - holistic_landmarker_options_proto.face_landmarks_detector_graph_options.min_detection_confidence = ( + holistic_landmarker_options_proto.pose_landmarks_detector_graph_options.min_detection_confidence = ( self.min_pose_landmarks_confidence ) # Configure hand landmarks detector options. @@ -473,8 +473,6 @@ class HolisticLandmarker(base_vision_task_api.BaseVisionTaskApi): running mode. The image can be of any size with format RGB or RGBA. - TODO: Describes how the input image will be preprocessed after the yuv - support is implemented. Args: image: MediaPipe Image.