51 lines
1.6 KiB
Python
51 lines
1.6 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("@pybind11_bazel//:build_defs.bzl", "pybind_extension")
|
|
|
|
licenses(["notice"]) # Apache 2.0
|
|
|
|
cc_library(
|
|
name = "builtin_calculators",
|
|
deps = [
|
|
"//mediapipe/calculators/core:pass_through_calculator",
|
|
"//mediapipe/graphs/pose_tracking:upper_body_pose_tracking_cpu_deps",
|
|
],
|
|
)
|
|
|
|
pybind_extension(
|
|
name = "_framework_bindings",
|
|
srcs = ["framework_bindings.cc"],
|
|
linkopts = [
|
|
"-lopencv_core",
|
|
"-lopencv_imgproc",
|
|
"-lopencv_highgui",
|
|
"-lopencv_video",
|
|
"-lopencv_features2d",
|
|
"-lopencv_calib3d",
|
|
"-lopencv_imgcodecs",
|
|
],
|
|
deps = [
|
|
":builtin_calculators",
|
|
"//mediapipe/python/pybind:calculator_graph",
|
|
"//mediapipe/python/pybind:image_frame",
|
|
"//mediapipe/python/pybind:matrix",
|
|
"//mediapipe/python/pybind:packet",
|
|
"//mediapipe/python/pybind:packet_creator",
|
|
"//mediapipe/python/pybind:packet_getter",
|
|
"//mediapipe/python/pybind:resource_util",
|
|
"//mediapipe/python/pybind:timestamp",
|
|
],
|
|
)
|