77 lines
2.8 KiB
Python
77 lines
2.8 KiB
Python
# Copyright 2023 The MediaPipe Authors.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
package(default_visibility = ["//mediapipe/tasks:internal"])
|
|
|
|
licenses(["notice"])
|
|
|
|
cc_library(
|
|
name = "gesture_recognizer_result",
|
|
hdrs = ["gesture_recognizer_result.h"],
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//mediapipe/tasks/c/components/containers:category",
|
|
"//mediapipe/tasks/c/components/containers:landmark",
|
|
"//mediapipe/tasks/c/vision/core:common",
|
|
],
|
|
)
|
|
|
|
cc_library(
|
|
name = "gesture_recognizer_lib",
|
|
srcs = ["gesture_recognizer.cc"],
|
|
hdrs = ["gesture_recognizer.h"],
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
":gesture_recognizer_result",
|
|
"//mediapipe/framework/formats:image",
|
|
"//mediapipe/framework/formats:image_frame",
|
|
"//mediapipe/tasks/c/components/containers:gesture_recognizer_result_converter",
|
|
"//mediapipe/tasks/c/components/processors:classifier_options",
|
|
"//mediapipe/tasks/c/components/processors:classifier_options_converter",
|
|
"//mediapipe/tasks/c/core:base_options",
|
|
"//mediapipe/tasks/c/core:base_options_converter",
|
|
"//mediapipe/tasks/cc/vision/core:running_mode",
|
|
"//mediapipe/tasks/cc/vision/gesture_recognizer",
|
|
"//mediapipe/tasks/cc/vision/utils:image_utils",
|
|
"@com_google_absl//absl/log:absl_log",
|
|
"@com_google_absl//absl/status",
|
|
"@com_google_absl//absl/status:statusor",
|
|
],
|
|
alwayslink = 1,
|
|
)
|
|
|
|
cc_test(
|
|
name = "gesture_recognizer_test",
|
|
srcs = ["gesture_recognizer_test.cc"],
|
|
data = [
|
|
"//mediapipe/framework/formats:image_frame_opencv",
|
|
"//mediapipe/framework/port:opencv_core",
|
|
"//mediapipe/framework/port:opencv_imgproc",
|
|
"//mediapipe/tasks/testdata/vision:test_images",
|
|
"//mediapipe/tasks/testdata/vision:test_models",
|
|
],
|
|
linkstatic = 1,
|
|
deps = [
|
|
":gesture_recognizer_lib",
|
|
"//mediapipe/framework/deps:file_path",
|
|
"//mediapipe/framework/formats:image",
|
|
"//mediapipe/framework/port:gtest",
|
|
"//mediapipe/tasks/c/components/containers:landmark",
|
|
"//mediapipe/tasks/cc/vision/utils:image_utils",
|
|
"@com_google_absl//absl/flags:flag",
|
|
"@com_google_absl//absl/strings",
|
|
"@com_google_googletest//:gtest_main",
|
|
],
|
|
)
|