Add support for rotations in GestureRecognizer C++ API.

PiperOrigin-RevId: 482533599
This commit is contained in:
MediaPipe Team
2022-10-20 10:42:42 -07:00
committed by Copybara-Service
parent e71638cf67
commit 4b5df1cb96
21 changed files with 1048 additions and 63 deletions
+13
View File
@@ -39,6 +39,7 @@ mediapipe_files(srcs = [
"hand_landmark_full.tflite",
"hand_landmark_lite.tflite",
"left_hands.jpg",
"left_hands_rotated.jpg",
"mobilenet_v1_0.25_192_quantized_1_default_1.tflite",
"mobilenet_v1_0.25_224_1_default_1.tflite",
"mobilenet_v1_0.25_224_1_metadata_1.tflite",
@@ -52,7 +53,9 @@ mediapipe_files(srcs = [
"multi_objects_rotated.jpg",
"palm_detection_full.tflite",
"pointing_up.jpg",
"pointing_up_rotated.jpg",
"right_hands.jpg",
"right_hands_rotated.jpg",
"segmentation_golden_rotation0.png",
"segmentation_input_rotation0.jpg",
"selfie_segm_128_128_3.tflite",
@@ -65,7 +68,9 @@ mediapipe_files(srcs = [
exports_files(
srcs = [
"expected_left_down_hand_landmarks.prototxt",
"expected_left_down_hand_rotated_landmarks.prototxt",
"expected_left_up_hand_landmarks.prototxt",
"expected_left_up_hand_rotated_landmarks.prototxt",
"expected_right_down_hand_landmarks.prototxt",
"expected_right_up_hand_landmarks.prototxt",
],
@@ -85,11 +90,14 @@ filegroup(
"hand_landmark_full.tflite",
"hand_landmark_lite.tflite",
"left_hands.jpg",
"left_hands_rotated.jpg",
"mozart_square.jpg",
"multi_objects.jpg",
"multi_objects_rotated.jpg",
"pointing_up.jpg",
"pointing_up_rotated.jpg",
"right_hands.jpg",
"right_hands_rotated.jpg",
"segmentation_golden_rotation0.png",
"segmentation_input_rotation0.jpg",
"selfie_segm_128_128_3_expected_mask.jpg",
@@ -131,12 +139,17 @@ filegroup(
name = "test_protos",
srcs = [
"expected_left_down_hand_landmarks.prototxt",
"expected_left_down_hand_rotated_landmarks.prototxt",
"expected_left_up_hand_landmarks.prototxt",
"expected_left_up_hand_rotated_landmarks.prototxt",
"expected_right_down_hand_landmarks.prototxt",
"expected_right_up_hand_landmarks.prototxt",
"hand_detector_result_one_hand.pbtxt",
"hand_detector_result_one_hand_rotated.pbtxt",
"hand_detector_result_two_hands.pbtxt",
"pointing_up_landmarks.pbtxt",
"pointing_up_rotated_landmarks.pbtxt",
"thumb_up_landmarks.pbtxt",
"thumb_up_rotated_landmarks.pbtxt",
],
)