2020-08-13 03:57:56 +02:00
|
|
|
# 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
|
|
|
|
|
|
|
|
pybind_extension(
|
|
|
|
name = "_framework_bindings",
|
|
|
|
srcs = ["framework_bindings.cc"],
|
2020-08-30 05:41:10 +02:00
|
|
|
linkopts = select({
|
|
|
|
"//third_party:opencv_source_build": [],
|
|
|
|
"//conditions:default": [
|
|
|
|
"-lopencv_core",
|
|
|
|
"-lopencv_imgproc",
|
|
|
|
"-lopencv_highgui",
|
|
|
|
"-lopencv_video",
|
|
|
|
"-lopencv_features2d",
|
|
|
|
"-lopencv_calib3d",
|
|
|
|
"-lopencv_imgcodecs",
|
|
|
|
],
|
|
|
|
}),
|
2020-08-13 03:57:56 +02:00
|
|
|
deps = [
|
|
|
|
":builtin_calculators",
|
|
|
|
"//mediapipe/python/pybind:calculator_graph",
|
2021-05-05 03:30:15 +02:00
|
|
|
"//mediapipe/python/pybind:image",
|
2020-08-13 03:57:56 +02:00
|
|
|
"//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",
|
2020-09-16 03:31:50 +02:00
|
|
|
"//mediapipe/python/pybind:validated_graph_config",
|
2020-11-05 01:02:35 +01:00
|
|
|
# Type registration.
|
|
|
|
"//mediapipe/framework:basic_types_registration",
|
|
|
|
"//mediapipe/framework/formats:classification_registration",
|
|
|
|
"//mediapipe/framework/formats:detection_registration",
|
|
|
|
"//mediapipe/framework/formats:landmark_registration",
|
2021-02-27 09:21:16 +01:00
|
|
|
"//mediapipe/framework/formats:rect_registration",
|
|
|
|
"//mediapipe/modules/objectron/calculators:annotation_registration",
|
2020-11-05 01:02:35 +01:00
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
cc_library(
|
|
|
|
name = "builtin_calculators",
|
|
|
|
deps = [
|
2020-12-10 04:13:05 +01:00
|
|
|
"//mediapipe/calculators/core:gate_calculator",
|
2020-11-05 01:02:35 +01:00
|
|
|
"//mediapipe/calculators/core:pass_through_calculator",
|
2020-12-10 04:13:05 +01:00
|
|
|
"//mediapipe/calculators/core:side_packet_to_stream_calculator",
|
2020-11-05 01:02:35 +01:00
|
|
|
"//mediapipe/calculators/core:split_normalized_landmark_list_calculator",
|
2020-12-10 04:13:05 +01:00
|
|
|
"//mediapipe/calculators/core:string_to_int_calculator",
|
|
|
|
"//mediapipe/calculators/image:image_transformation_calculator",
|
|
|
|
"//mediapipe/calculators/util:detection_unique_id_calculator",
|
2020-11-05 01:02:35 +01:00
|
|
|
"//mediapipe/modules/face_detection:face_detection_front_cpu",
|
|
|
|
"//mediapipe/modules/face_landmark:face_landmark_front_cpu",
|
|
|
|
"//mediapipe/modules/hand_landmark:hand_landmark_tracking_cpu",
|
2020-12-10 04:13:05 +01:00
|
|
|
"//mediapipe/modules/holistic_landmark:holistic_landmark_cpu",
|
2021-02-27 09:21:16 +01:00
|
|
|
"//mediapipe/modules/objectron:objectron_cpu",
|
2020-11-05 01:02:35 +01:00
|
|
|
"//mediapipe/modules/palm_detection:palm_detection_cpu",
|
|
|
|
"//mediapipe/modules/pose_detection:pose_detection_cpu",
|
2020-12-10 04:13:05 +01:00
|
|
|
"//mediapipe/modules/pose_landmark:pose_landmark_by_roi_cpu",
|
|
|
|
"//mediapipe/modules/pose_landmark:pose_landmark_cpu",
|
2020-08-13 03:57:56 +02:00
|
|
|
],
|
|
|
|
)
|