114 lines
3.8 KiB
Python
114 lines
3.8 KiB
Python
|
# Copyright 2020 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.
|
||
|
|
||
|
load("//mediapipe/framework/port:build_config.bzl", "mediapipe_proto_library")
|
||
|
|
||
|
licenses(["notice"])
|
||
|
|
||
|
package(default_visibility = ["//visibility:public"])
|
||
|
|
||
|
mediapipe_proto_library(
|
||
|
name = "gl_animation_overlay_calculator_proto",
|
||
|
srcs = ["gl_animation_overlay_calculator.proto"],
|
||
|
visibility = ["//visibility:public"],
|
||
|
deps = [
|
||
|
"//mediapipe/framework:calculator_proto",
|
||
|
],
|
||
|
)
|
||
|
|
||
|
mediapipe_proto_library(
|
||
|
name = "annotations_to_model_matrices_calculator_proto",
|
||
|
srcs = ["annotations_to_model_matrices_calculator.proto"],
|
||
|
visibility = ["//visibility:public"],
|
||
|
deps = [
|
||
|
"//mediapipe/framework:calculator_proto",
|
||
|
],
|
||
|
)
|
||
|
|
||
|
mediapipe_proto_library(
|
||
|
name = "model_matrix_proto",
|
||
|
srcs = ["model_matrix.proto"],
|
||
|
visibility = ["//visibility:public"],
|
||
|
deps = [
|
||
|
"//mediapipe/framework:calculator_proto",
|
||
|
],
|
||
|
)
|
||
|
|
||
|
mediapipe_proto_library(
|
||
|
name = "annotations_to_render_data_calculator_proto",
|
||
|
srcs = ["annotations_to_render_data_calculator.proto"],
|
||
|
visibility = ["//visibility:public"],
|
||
|
deps = [
|
||
|
"//mediapipe/framework:calculator_proto",
|
||
|
"//mediapipe/util:color_proto",
|
||
|
],
|
||
|
)
|
||
|
|
||
|
cc_library(
|
||
|
name = "gl_animation_overlay_calculator",
|
||
|
srcs = ["gl_animation_overlay_calculator.cc"],
|
||
|
visibility = ["//visibility:public"],
|
||
|
deps = [
|
||
|
":gl_animation_overlay_calculator_cc_proto",
|
||
|
":model_matrix_cc_proto",
|
||
|
"//mediapipe/framework:calculator_framework",
|
||
|
"//mediapipe/framework/port:ret_check",
|
||
|
"//mediapipe/framework/port:status",
|
||
|
"//mediapipe/gpu:gl_calculator_helper",
|
||
|
"//mediapipe/gpu:shader_util",
|
||
|
"//mediapipe/modules/objectron/calculators:camera_parameters_cc_proto",
|
||
|
"//mediapipe/util/android:asset_manager_util",
|
||
|
],
|
||
|
alwayslink = 1,
|
||
|
)
|
||
|
|
||
|
cc_library(
|
||
|
name = "annotations_to_model_matrices_calculator",
|
||
|
srcs = ["annotations_to_model_matrices_calculator.cc"],
|
||
|
visibility = ["//visibility:public"],
|
||
|
deps = [
|
||
|
":annotations_to_model_matrices_calculator_cc_proto",
|
||
|
":model_matrix_cc_proto",
|
||
|
"//mediapipe/framework:calculator_framework",
|
||
|
"//mediapipe/framework:calculator_options_cc_proto",
|
||
|
"//mediapipe/framework/port:ret_check",
|
||
|
"//mediapipe/framework/port:status",
|
||
|
"//mediapipe/modules/objectron/calculators:annotation_cc_proto",
|
||
|
"//mediapipe/modules/objectron/calculators:box",
|
||
|
"//mediapipe/util:color_cc_proto",
|
||
|
"@com_google_absl//absl/memory",
|
||
|
"@com_google_absl//absl/strings",
|
||
|
"@eigen_archive//:eigen3",
|
||
|
],
|
||
|
alwayslink = 1,
|
||
|
)
|
||
|
|
||
|
cc_library(
|
||
|
name = "annotations_to_render_data_calculator",
|
||
|
srcs = ["annotations_to_render_data_calculator.cc"],
|
||
|
visibility = ["//visibility:public"],
|
||
|
deps = [
|
||
|
":annotations_to_render_data_calculator_cc_proto",
|
||
|
"//mediapipe/framework:calculator_framework",
|
||
|
"//mediapipe/framework:calculator_options_cc_proto",
|
||
|
"//mediapipe/framework/port:ret_check",
|
||
|
"//mediapipe/modules/objectron/calculators:annotation_cc_proto",
|
||
|
"//mediapipe/util:color_cc_proto",
|
||
|
"//mediapipe/util:render_data_cc_proto",
|
||
|
"@com_google_absl//absl/memory",
|
||
|
"@com_google_absl//absl/strings",
|
||
|
],
|
||
|
alwayslink = 1,
|
||
|
)
|