mediapipe/mediapipe/examples/desktop/autoflip/BUILD
Sebastian Schmidt e84799ee37 Internal change
PiperOrigin-RevId: 521483663
2023-04-03 09:45:42 -07:00

56 lines
2.4 KiB
Python

load("//mediapipe/framework/port:build_config.bzl", "mediapipe_proto_library")
# Copyright 2019 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.
licenses(["notice"])
package(default_visibility = [
"//mediapipe/examples:__subpackages__",
"//photos/editing/mobile/mediapipe/calculators:__subpackages__",
"//photos/editing/mobile/mediapipe/proto:__subpackages__",
])
mediapipe_proto_library(
name = "autoflip_messages_proto",
srcs = ["autoflip_messages.proto"],
deps = [
"//mediapipe/framework:calculator_options_proto",
],
)
cc_binary(
name = "run_autoflip",
data = [
"//mediapipe/modules/face_detection:face_detection_full_range_sparse.tflite",
],
deps = [
"//mediapipe/calculators/core:packet_thinner_calculator",
"//mediapipe/calculators/image:scale_image_calculator",
"//mediapipe/calculators/video:opencv_video_decoder_calculator",
"//mediapipe/calculators/video:opencv_video_encoder_calculator",
"//mediapipe/calculators/video:video_pre_stream_calculator",
"//mediapipe/examples/desktop:simple_run_graph_main",
"//mediapipe/examples/desktop/autoflip/calculators:border_detection_calculator",
"//mediapipe/examples/desktop/autoflip/calculators:face_to_region_calculator",
"//mediapipe/examples/desktop/autoflip/calculators:localization_to_region_calculator",
"//mediapipe/examples/desktop/autoflip/calculators:scene_cropping_calculator",
"//mediapipe/examples/desktop/autoflip/calculators:shot_boundary_calculator",
"//mediapipe/examples/desktop/autoflip/calculators:signal_fusing_calculator",
"//mediapipe/examples/desktop/autoflip/calculators:video_filtering_calculator",
"//mediapipe/examples/desktop/autoflip/subgraph:autoflip_face_detection_subgraph",
"//mediapipe/examples/desktop/autoflip/subgraph:autoflip_object_detection_subgraph",
],
)