From 7c70c62465ded131b22bbd2822193641f2a85cdb Mon Sep 17 00:00:00 2001 From: Jiuqiang Tang Date: Thu, 27 Apr 2023 08:08:18 -0700 Subject: [PATCH] Fix typo and improve comments. PiperOrigin-RevId: 527580369 --- .../tasks/cc/vision/face_detector/face_detector_graph.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mediapipe/tasks/cc/vision/face_detector/face_detector_graph.cc b/mediapipe/tasks/cc/vision/face_detector/face_detector_graph.cc index 545bdb27..8d83ac2c 100644 --- a/mediapipe/tasks/cc/vision/face_detector/face_detector_graph.cc +++ b/mediapipe/tasks/cc/vision/face_detector/face_detector_graph.cc @@ -127,9 +127,9 @@ void ConfigureNonMaxSuppressionCalculator( void ConfigureDetectionsToRectsCalculator( mediapipe::DetectionsToRectsCalculatorOptions* options) { - // Left eye. + // Left eye from the observer’s point of view. options->set_rotation_vector_start_keypoint_index(0); - // Right ete. + // Right eye from the observer’s point of view. options->set_rotation_vector_end_keypoint_index(1); options->set_rotation_vector_target_angle_degrees(0); }