Chrome can't use Absl's CHECK because of collisions with its own version. PiperOrigin-RevId: 561740965
		
			
				
	
	
		
			444 lines
		
	
	
		
			14 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			444 lines
		
	
	
		
			14 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
# 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.
 | 
						|
 | 
						|
# Placeholder: load py_library
 | 
						|
load("//mediapipe/framework/port:build_config.bzl", "mediapipe_proto_library")
 | 
						|
load("//mediapipe/framework:mediapipe_cc_test.bzl", "mediapipe_cc_test")
 | 
						|
 | 
						|
licenses(["notice"])
 | 
						|
 | 
						|
package(default_visibility = ["//visibility:private"])
 | 
						|
 | 
						|
mediapipe_proto_library(
 | 
						|
    name = "audio_decoder_proto",
 | 
						|
    srcs = ["audio_decoder.proto"],
 | 
						|
    visibility = ["//visibility:public"],
 | 
						|
    deps = [
 | 
						|
        "//mediapipe/framework:calculator_options_proto",
 | 
						|
        "//mediapipe/framework:calculator_proto",
 | 
						|
    ],
 | 
						|
)
 | 
						|
 | 
						|
mediapipe_proto_library(
 | 
						|
    name = "color_proto",
 | 
						|
    srcs = ["color.proto"],
 | 
						|
    visibility = ["//visibility:public"],
 | 
						|
)
 | 
						|
 | 
						|
mediapipe_proto_library(
 | 
						|
    name = "label_map_proto",
 | 
						|
    srcs = ["label_map.proto"],
 | 
						|
    visibility = ["//visibility:public"],
 | 
						|
)
 | 
						|
 | 
						|
mediapipe_proto_library(
 | 
						|
    name = "render_data_proto",
 | 
						|
    srcs = ["render_data.proto"],
 | 
						|
    visibility = ["//visibility:public"],
 | 
						|
    deps = ["//mediapipe/util:color_proto"],
 | 
						|
)
 | 
						|
 | 
						|
cc_library(
 | 
						|
    name = "audio_decoder",
 | 
						|
    srcs = ["audio_decoder.cc"],
 | 
						|
    hdrs = ["audio_decoder.h"],
 | 
						|
    visibility = ["//visibility:public"],
 | 
						|
    deps = [
 | 
						|
        ":audio_decoder_cc_proto",
 | 
						|
        "//mediapipe/framework:packet",
 | 
						|
        "//mediapipe/framework:timestamp",
 | 
						|
        "//mediapipe/framework/deps:cleanup",
 | 
						|
        "//mediapipe/framework/formats:matrix",
 | 
						|
        "//mediapipe/framework/formats:time_series_header_cc_proto",
 | 
						|
        "//mediapipe/framework/port:integral_types",
 | 
						|
        "//mediapipe/framework/port:map_util",
 | 
						|
        "//mediapipe/framework/port:ret_check",
 | 
						|
        "//mediapipe/framework/port:status",
 | 
						|
        "//mediapipe/framework/tool:status_util",
 | 
						|
        "//third_party:libffmpeg",
 | 
						|
        "@com_google_absl//absl/base:endian",
 | 
						|
        "@com_google_absl//absl/flags:flag",
 | 
						|
        "@com_google_absl//absl/log:absl_check",
 | 
						|
        "@com_google_absl//absl/log:absl_log",
 | 
						|
        "@com_google_absl//absl/strings",
 | 
						|
        "@com_google_absl//absl/time",
 | 
						|
        "@eigen_archive//:eigen3",
 | 
						|
    ],
 | 
						|
)
 | 
						|
 | 
						|
cc_library(
 | 
						|
    name = "cpu_util",
 | 
						|
    srcs = ["cpu_util.cc"],
 | 
						|
    hdrs = ["cpu_util.h"],
 | 
						|
    visibility = ["//visibility:public"],
 | 
						|
    deps = [
 | 
						|
        "//mediapipe/framework/port:integral_types",
 | 
						|
        "//mediapipe/framework/port:status",
 | 
						|
        "//mediapipe/framework/port:statusor",
 | 
						|
        "@com_google_absl//absl/algorithm:container",
 | 
						|
        "@com_google_absl//absl/flags:flag",
 | 
						|
        "@com_google_absl//absl/strings",
 | 
						|
    ] + select({
 | 
						|
        "//conditions:default": [],
 | 
						|
        "//mediapipe:android": [
 | 
						|
            "@androidndk//:cpufeatures",
 | 
						|
        ],
 | 
						|
    }),
 | 
						|
)
 | 
						|
 | 
						|
cc_library(
 | 
						|
    name = "header_util",
 | 
						|
    srcs = ["header_util.cc"],
 | 
						|
    hdrs = ["header_util.h"],
 | 
						|
    visibility = ["//visibility:public"],
 | 
						|
    deps = [
 | 
						|
        "//mediapipe/framework:calculator_framework",
 | 
						|
        "//mediapipe/framework:packet_set",
 | 
						|
        "//mediapipe/framework/port:status",
 | 
						|
        "//mediapipe/framework/tool:status_util",
 | 
						|
    ],
 | 
						|
)
 | 
						|
 | 
						|
cc_library(
 | 
						|
    name = "image_frame_util",
 | 
						|
    srcs = ["image_frame_util.cc"],
 | 
						|
    hdrs = ["image_frame_util.h"],
 | 
						|
    visibility = ["//visibility:public"],
 | 
						|
    deps = [
 | 
						|
        "//mediapipe/framework/deps:mathutil",
 | 
						|
        "//mediapipe/framework/formats:image_format_cc_proto",
 | 
						|
        "//mediapipe/framework/formats:image_frame",
 | 
						|
        "//mediapipe/framework/formats:image_frame_opencv",
 | 
						|
        "//mediapipe/framework/formats:yuv_image",
 | 
						|
        "//mediapipe/framework/port",
 | 
						|
        "//mediapipe/framework/port:aligned_malloc_and_free",
 | 
						|
        "//mediapipe/framework/port:integral_types",
 | 
						|
        "//mediapipe/framework/port:opencv_imgproc",
 | 
						|
        "//mediapipe/framework/port:status",
 | 
						|
        "//mediapipe/framework/tool:status_util",
 | 
						|
        "@com_google_absl//absl/log:absl_check",
 | 
						|
        "@com_google_absl//absl/log:absl_log",
 | 
						|
        "@com_google_absl//absl/strings",
 | 
						|
        "@libyuv",
 | 
						|
    ],
 | 
						|
)
 | 
						|
 | 
						|
cc_library(
 | 
						|
    name = "label_map_util",
 | 
						|
    srcs = ["label_map_util.cc"],
 | 
						|
    hdrs = ["label_map_util.h"],
 | 
						|
    visibility = ["//visibility:public"],
 | 
						|
    deps = [
 | 
						|
        ":label_map_cc_proto",
 | 
						|
        "//mediapipe/framework/port:core_proto",
 | 
						|
        "//mediapipe/framework/port:integral_types",
 | 
						|
        "//mediapipe/framework/port:statusor",
 | 
						|
        "@com_google_absl//absl/strings",
 | 
						|
        "@com_google_absl//absl/strings:str_format",
 | 
						|
    ],
 | 
						|
)
 | 
						|
 | 
						|
cc_library(
 | 
						|
    name = "pose_util",
 | 
						|
    srcs = ["pose_util.cc"],
 | 
						|
    hdrs = ["pose_util.h"],
 | 
						|
    visibility = ["//visibility:public"],
 | 
						|
    deps = [
 | 
						|
        "//mediapipe/framework/formats:landmark_cc_proto",
 | 
						|
        "//mediapipe/framework/port:opencv_core",
 | 
						|
        "//mediapipe/framework/port:opencv_imgproc",
 | 
						|
        "@com_google_absl//absl/log:absl_log",
 | 
						|
    ],
 | 
						|
)
 | 
						|
 | 
						|
cc_library(
 | 
						|
    name = "annotation_renderer",
 | 
						|
    srcs = ["annotation_renderer.cc"],
 | 
						|
    hdrs = ["annotation_renderer.h"],
 | 
						|
    visibility = ["//visibility:public"],
 | 
						|
    deps = [
 | 
						|
        ":color_cc_proto",
 | 
						|
        ":render_data_cc_proto",
 | 
						|
        "//mediapipe/framework/port:logging",
 | 
						|
        "//mediapipe/framework/port:opencv_core",
 | 
						|
        "//mediapipe/framework/port:opencv_imgproc",
 | 
						|
        "//mediapipe/framework/port:vector",
 | 
						|
        "@com_google_absl//absl/log:absl_check",
 | 
						|
        "@com_google_absl//absl/log:absl_log",
 | 
						|
    ],
 | 
						|
)
 | 
						|
 | 
						|
# Prefer to use ":resource_util", Customization of the resource util is being restricted
 | 
						|
# while we explore how it should best be implemented.
 | 
						|
cc_library(
 | 
						|
    name = "resource_util_custom",
 | 
						|
    hdrs = ["resource_util_custom.h"],
 | 
						|
    visibility = ["//visibility:public"],
 | 
						|
    deps = [
 | 
						|
        "//mediapipe/framework/port:status",
 | 
						|
    ],
 | 
						|
)
 | 
						|
 | 
						|
cc_library(
 | 
						|
    name = "resource_util",
 | 
						|
    srcs = [
 | 
						|
        "resource_util.cc",
 | 
						|
        "resource_util_internal.h",
 | 
						|
    ] + select({
 | 
						|
        "//conditions:default": ["resource_util_default.cc"],
 | 
						|
        "//mediapipe:android": ["resource_util_android.cc"],
 | 
						|
        "//mediapipe/framework:android_no_jni": ["resource_util_loonix.cc"],
 | 
						|
        "//mediapipe:ios": ["resource_util_apple.cc"],
 | 
						|
        "//mediapipe:macos": ["resource_util_default.cc"],
 | 
						|
        "//mediapipe:windows": ["resource_util_windows.cc"],
 | 
						|
    }),
 | 
						|
    hdrs = [
 | 
						|
        "resource_util.h",
 | 
						|
    ],
 | 
						|
 | 
						|
    # We use Objective-C++ on iOS.
 | 
						|
    copts = select({
 | 
						|
        "//conditions:default": [],
 | 
						|
        "//mediapipe:ios": [
 | 
						|
            "-ObjC++",
 | 
						|
        ],
 | 
						|
        "//mediapipe:macos": [],
 | 
						|
    }),
 | 
						|
    visibility = ["//visibility:public"],
 | 
						|
    deps = [
 | 
						|
        ":resource_util_custom",
 | 
						|
        "//mediapipe/framework/deps:file_path",
 | 
						|
        "//mediapipe/framework/port:file_helpers",
 | 
						|
        "//mediapipe/framework/port:logging",
 | 
						|
        "//mediapipe/framework/port:ret_check",
 | 
						|
        "//mediapipe/framework/port:singleton",
 | 
						|
        "//mediapipe/framework/port:status",
 | 
						|
        "//mediapipe/framework/port:statusor",
 | 
						|
        "@com_google_absl//absl/log:absl_log",
 | 
						|
        "@com_google_absl//absl/strings",
 | 
						|
        "@com_google_absl//absl/strings:str_format",
 | 
						|
    ] + select({
 | 
						|
        "//conditions:default": [
 | 
						|
            "@com_google_absl//absl/flags:flag",
 | 
						|
        ],
 | 
						|
        "//mediapipe:android": [
 | 
						|
            "//mediapipe/util/android:asset_manager_util",
 | 
						|
            "//mediapipe/util/android/file/base",
 | 
						|
        ],
 | 
						|
        "//mediapipe/framework:android_no_jni": [],
 | 
						|
        "//mediapipe:ios": [],
 | 
						|
        "//mediapipe:macos": [
 | 
						|
            "@com_google_absl//absl/flags:flag",
 | 
						|
        ],
 | 
						|
        "//mediapipe:windows": [
 | 
						|
            "@bazel_tools//tools/cpp/runfiles",
 | 
						|
            "@com_google_absl//absl/flags:flag",
 | 
						|
        ],
 | 
						|
    }),
 | 
						|
)
 | 
						|
 | 
						|
cc_library(
 | 
						|
    name = "resource_cache",
 | 
						|
    hdrs = ["resource_cache.h"],
 | 
						|
    visibility = ["//visibility:public"],
 | 
						|
    deps = [
 | 
						|
        "//mediapipe/framework/port:logging",
 | 
						|
        "@com_google_absl//absl/container:flat_hash_map",
 | 
						|
        "@com_google_absl//absl/functional:function_ref",
 | 
						|
        "@com_google_absl//absl/log:absl_check",
 | 
						|
    ],
 | 
						|
)
 | 
						|
 | 
						|
cc_test(
 | 
						|
    name = "resource_cache_test",
 | 
						|
    srcs = ["resource_cache_test.cc"],
 | 
						|
    deps = [
 | 
						|
        ":resource_cache",
 | 
						|
        "//mediapipe/framework/port:gtest_main",
 | 
						|
    ],
 | 
						|
)
 | 
						|
 | 
						|
cc_library(
 | 
						|
    name = "tensor_to_detection",
 | 
						|
    srcs = ["tensor_to_detection.cc"],
 | 
						|
    hdrs = ["tensor_to_detection.h"],
 | 
						|
    features = [
 | 
						|
        # Layering check doesn't play nicely with portable proto wrappers.
 | 
						|
        "no_layering_check",
 | 
						|
    ],
 | 
						|
    visibility = ["//visibility:public"],
 | 
						|
    deps = [
 | 
						|
        "//mediapipe/framework/formats:detection_cc_proto",
 | 
						|
        "//mediapipe/framework/formats:location",
 | 
						|
        "//mediapipe/framework/formats:location_opencv",
 | 
						|
        "//mediapipe/framework/port:map_util",
 | 
						|
        "//mediapipe/framework/port:status",
 | 
						|
        "@com_google_absl//absl/strings:str_format",
 | 
						|
        "@com_google_absl//absl/types:variant",
 | 
						|
    ] + select({
 | 
						|
        "//conditions:default": [
 | 
						|
            "@org_tensorflow//tensorflow/core:framework",
 | 
						|
        ],
 | 
						|
        "//mediapipe:android": [
 | 
						|
            "@org_tensorflow//tensorflow/core:portable_tensorflow_lib_lite",
 | 
						|
        ],
 | 
						|
    }),
 | 
						|
)
 | 
						|
 | 
						|
cc_library(
 | 
						|
    name = "time_series_util",
 | 
						|
    srcs = ["time_series_util.cc"],
 | 
						|
    hdrs = ["time_series_util.h"],
 | 
						|
    visibility = ["//visibility:public"],
 | 
						|
    deps = [
 | 
						|
        "//mediapipe/framework:calculator_framework",
 | 
						|
        "//mediapipe/framework/formats:matrix",
 | 
						|
        "//mediapipe/framework/formats:time_series_header_cc_proto",
 | 
						|
        "//mediapipe/framework/port:integral_types",
 | 
						|
        "//mediapipe/framework/port:status",
 | 
						|
        "@com_google_absl//absl/log:absl_check",
 | 
						|
        "@com_google_absl//absl/log:absl_log",
 | 
						|
        "@com_google_absl//absl/strings",
 | 
						|
    ],
 | 
						|
)
 | 
						|
 | 
						|
cc_library(
 | 
						|
    name = "time_series_test_util",
 | 
						|
    testonly = 1,
 | 
						|
    hdrs = ["time_series_test_util.h"],
 | 
						|
    visibility = ["//visibility:public"],
 | 
						|
    deps = [
 | 
						|
        ":time_series_util",
 | 
						|
        "//mediapipe/framework:calculator_framework",
 | 
						|
        "//mediapipe/framework:calculator_runner",
 | 
						|
        "//mediapipe/framework/formats:matrix",
 | 
						|
        "//mediapipe/framework/formats:time_series_header_cc_proto",
 | 
						|
        "//mediapipe/framework/port:gtest_main",
 | 
						|
        "//mediapipe/framework/port:integral_types",
 | 
						|
        "//mediapipe/framework/port:logging",
 | 
						|
        "//mediapipe/framework/port:parse_text_proto",
 | 
						|
        "//mediapipe/framework/port:status",
 | 
						|
        "@com_google_absl//absl/log:absl_check",
 | 
						|
        "@com_google_absl//absl/log:absl_log",
 | 
						|
        "@com_google_absl//absl/strings",
 | 
						|
        "@eigen_archive//:eigen3",
 | 
						|
    ],
 | 
						|
)
 | 
						|
 | 
						|
cc_test(
 | 
						|
    name = "time_series_util_test",
 | 
						|
    size = "small",
 | 
						|
    srcs = ["time_series_util_test.cc"],
 | 
						|
    deps = [
 | 
						|
        ":time_series_util",
 | 
						|
        "//mediapipe/framework:calculator_framework",
 | 
						|
        "//mediapipe/framework/formats:time_series_header_cc_proto",
 | 
						|
        "//mediapipe/framework/port:gtest_main",
 | 
						|
        "@eigen_archive//:eigen3",
 | 
						|
    ],
 | 
						|
)
 | 
						|
 | 
						|
cc_library(
 | 
						|
    name = "packet_test_util",
 | 
						|
    testonly = 1,
 | 
						|
    hdrs = ["packet_test_util.h"],
 | 
						|
    visibility = ["//visibility:public"],
 | 
						|
    deps = [
 | 
						|
        "//mediapipe/framework:demangle",
 | 
						|
        "//mediapipe/framework:packet",
 | 
						|
        "//mediapipe/framework:timestamp",
 | 
						|
        "//mediapipe/framework/port:gtest",
 | 
						|
    ],
 | 
						|
)
 | 
						|
 | 
						|
cc_test(
 | 
						|
    name = "packet_test_util_test",
 | 
						|
    size = "small",
 | 
						|
    srcs = ["packet_test_util_test.cc"],
 | 
						|
    deps = [
 | 
						|
        ":packet_test_util",
 | 
						|
        "//mediapipe/framework:packet",
 | 
						|
        "//mediapipe/framework:port",
 | 
						|
        "//mediapipe/framework:timestamp",
 | 
						|
        "//mediapipe/framework/port:gtest_main",
 | 
						|
    ],
 | 
						|
)
 | 
						|
 | 
						|
cc_library(
 | 
						|
    name = "rectangle_util",
 | 
						|
    srcs = ["rectangle_util.cc"],
 | 
						|
    hdrs = ["rectangle_util.h"],
 | 
						|
    visibility = ["//visibility:public"],
 | 
						|
    deps = [
 | 
						|
        "//mediapipe/framework/formats:rect_cc_proto",
 | 
						|
        "//mediapipe/framework/port:rectangle",
 | 
						|
        "//mediapipe/framework/port:ret_check",
 | 
						|
        "//mediapipe/framework/port:statusor",
 | 
						|
        "@com_google_absl//absl/status:statusor",
 | 
						|
        "@com_google_absl//absl/types:span",
 | 
						|
    ],
 | 
						|
)
 | 
						|
 | 
						|
cc_test(
 | 
						|
    name = "rectangle_util_test",
 | 
						|
    srcs = ["rectangle_util_test.cc"],
 | 
						|
    deps = [
 | 
						|
        ":rectangle_util",
 | 
						|
        "//mediapipe/framework/port:gtest_main",
 | 
						|
    ],
 | 
						|
)
 | 
						|
 | 
						|
cc_library(
 | 
						|
    name = "image_test_utils",
 | 
						|
    testonly = 1,
 | 
						|
    srcs = ["image_test_utils.cc"],
 | 
						|
    hdrs = ["image_test_utils.h"],
 | 
						|
    visibility = ["//visibility:public"],
 | 
						|
    deps = [
 | 
						|
        "//mediapipe/framework:packet",
 | 
						|
        "//mediapipe/framework:timestamp",
 | 
						|
        "//mediapipe/framework/formats:image",
 | 
						|
        "//mediapipe/framework/formats:image_format_cc_proto",
 | 
						|
        "//mediapipe/framework/formats:image_frame",
 | 
						|
        "//mediapipe/framework/formats:image_frame_opencv",
 | 
						|
        "//mediapipe/framework/port:opencv_core",
 | 
						|
        "//mediapipe/framework/port:opencv_imgcodecs",
 | 
						|
        "//mediapipe/framework/port:opencv_imgproc",
 | 
						|
        "@com_google_absl//absl/log:absl_log",
 | 
						|
    ],
 | 
						|
)
 | 
						|
 | 
						|
cc_library(
 | 
						|
    name = "graph_builder_utils",
 | 
						|
    srcs = ["graph_builder_utils.cc"],
 | 
						|
    hdrs = ["graph_builder_utils.h"],
 | 
						|
    visibility = ["//visibility:public"],
 | 
						|
    deps = [
 | 
						|
        "//mediapipe/framework:calculator_cc_proto",
 | 
						|
        "//mediapipe/framework:calculator_framework",
 | 
						|
        "@com_google_absl//absl/strings",
 | 
						|
    ],
 | 
						|
)
 | 
						|
 | 
						|
cc_test(
 | 
						|
    name = "graph_builder_utils_test",
 | 
						|
    srcs = ["graph_builder_utils_test.cc"],
 | 
						|
    deps = [
 | 
						|
        ":graph_builder_utils",
 | 
						|
        "//mediapipe/framework:calculator_cc_proto",
 | 
						|
        "//mediapipe/framework/port:gtest",
 | 
						|
        "//mediapipe/framework/port:gtest_main",
 | 
						|
    ],
 | 
						|
)
 |