443 lines
		
	
	
		
			13 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			443 lines
		
	
	
		
			13 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.
 | 
						|
#
 | 
						|
 | 
						|
load("//mediapipe/framework/port:build_config.bzl", "mediapipe_proto_library")
 | 
						|
load("//mediapipe/framework:mediapipe_register_type.bzl", "mediapipe_register_type")
 | 
						|
 | 
						|
package(
 | 
						|
    default_visibility = ["//visibility:private"],
 | 
						|
    features = ["-layering_check"],
 | 
						|
)
 | 
						|
 | 
						|
licenses(["notice"])
 | 
						|
 | 
						|
mediapipe_proto_library(
 | 
						|
    name = "detection_proto",
 | 
						|
    srcs = ["detection.proto"],
 | 
						|
    visibility = ["//visibility:public"],
 | 
						|
    deps = ["//mediapipe/framework/formats:location_data_proto"],
 | 
						|
)
 | 
						|
 | 
						|
mediapipe_register_type(
 | 
						|
    base_name = "detection",
 | 
						|
    include_headers = ["mediapipe/framework/formats/detection.pb.h"],
 | 
						|
    types = [
 | 
						|
        "::mediapipe::Detection",
 | 
						|
        "::mediapipe::DetectionList",
 | 
						|
        "::std::vector<::mediapipe::Detection>",
 | 
						|
        "::std::vector<::mediapipe::DetectionList>",
 | 
						|
    ],
 | 
						|
    deps = ["//mediapipe/framework/formats:detection_cc_proto"],
 | 
						|
)
 | 
						|
 | 
						|
mediapipe_proto_library(
 | 
						|
    name = "classification_proto",
 | 
						|
    srcs = ["classification.proto"],
 | 
						|
    visibility = ["//visibility:public"],
 | 
						|
)
 | 
						|
 | 
						|
mediapipe_register_type(
 | 
						|
    base_name = "classification",
 | 
						|
    include_headers = ["mediapipe/framework/formats/classification.pb.h"],
 | 
						|
    types = [
 | 
						|
        "::mediapipe::Classification",
 | 
						|
        "::mediapipe::ClassificationList",
 | 
						|
        "::std::vector<::mediapipe::Classification>",
 | 
						|
        "::std::vector<::mediapipe::ClassificationList>",
 | 
						|
    ],
 | 
						|
    deps = [":classification_cc_proto"],
 | 
						|
)
 | 
						|
 | 
						|
mediapipe_proto_library(
 | 
						|
    name = "image_format_proto",
 | 
						|
    srcs = ["image_format.proto"],
 | 
						|
    visibility = ["//visibility:public"],
 | 
						|
)
 | 
						|
 | 
						|
mediapipe_proto_library(
 | 
						|
    name = "matrix_data_proto",
 | 
						|
    srcs = ["matrix_data.proto"],
 | 
						|
    visibility = ["//visibility:public"],
 | 
						|
)
 | 
						|
 | 
						|
mediapipe_proto_library(
 | 
						|
    name = "location_data_proto",
 | 
						|
    srcs = ["location_data.proto"],
 | 
						|
    portable_deps = ["//mediapipe/framework/formats/annotation:rasterization_cc_proto"],
 | 
						|
    visibility = ["//visibility:public"],
 | 
						|
    deps = ["//mediapipe/framework/formats/annotation:rasterization_proto"],
 | 
						|
)
 | 
						|
 | 
						|
mediapipe_proto_library(
 | 
						|
    name = "time_series_header_proto",
 | 
						|
    srcs = ["time_series_header.proto"],
 | 
						|
    visibility = ["//visibility:public"],
 | 
						|
)
 | 
						|
 | 
						|
mediapipe_proto_library(
 | 
						|
    name = "image_file_properties_proto",
 | 
						|
    srcs = ["image_file_properties.proto"],
 | 
						|
    visibility = ["//visibility:public"],
 | 
						|
)
 | 
						|
 | 
						|
cc_library(
 | 
						|
    name = "deleting_file",
 | 
						|
    srcs = ["deleting_file.cc"],
 | 
						|
    hdrs = ["deleting_file.h"],
 | 
						|
    visibility = ["//visibility:public"],
 | 
						|
    deps = [
 | 
						|
        "//mediapipe/framework/port:logging",
 | 
						|
    ],
 | 
						|
)
 | 
						|
 | 
						|
cc_library(
 | 
						|
    name = "matrix",
 | 
						|
    srcs = ["matrix.cc"],
 | 
						|
    hdrs = ["matrix.h"],
 | 
						|
    visibility = ["//visibility:public"],
 | 
						|
    deps = [
 | 
						|
        "//mediapipe/framework:port",
 | 
						|
        "//mediapipe/framework/formats:matrix_data_cc_proto",
 | 
						|
        "//mediapipe/framework/port:core_proto",
 | 
						|
        "//mediapipe/framework/port:logging",
 | 
						|
        "//mediapipe/framework/port:ret_check",
 | 
						|
        "//mediapipe/framework/port:status",
 | 
						|
        "@eigen_archive//:eigen3",
 | 
						|
    ],
 | 
						|
)
 | 
						|
 | 
						|
cc_library(
 | 
						|
    name = "image_frame",
 | 
						|
    srcs = ["image_frame.cc"],
 | 
						|
    hdrs = ["image_frame.h"],
 | 
						|
    visibility = ["//visibility:public"],
 | 
						|
    deps = [
 | 
						|
        "//mediapipe/framework/formats:image_format_cc_proto",
 | 
						|
        "@com_google_absl//absl/base",
 | 
						|
        "@com_google_absl//absl/base:core_headers",
 | 
						|
        "@com_google_absl//absl/memory",
 | 
						|
        "@com_google_absl//absl/strings",
 | 
						|
        "//mediapipe/framework:port",
 | 
						|
        "//mediapipe/framework/port:aligned_malloc_and_free",
 | 
						|
        "//mediapipe/framework/port:core_proto",
 | 
						|
        "//mediapipe/framework/port:integral_types",
 | 
						|
        "//mediapipe/framework/port:source_location",
 | 
						|
        "//mediapipe/framework/port:logging",
 | 
						|
        "//mediapipe/framework/tool:type_util",
 | 
						|
    ] + select({
 | 
						|
        "//conditions:default": [
 | 
						|
        ],
 | 
						|
        "//mediapipe/framework:disable_rtti_and_exceptions": [],
 | 
						|
    }),
 | 
						|
)
 | 
						|
 | 
						|
cc_library(
 | 
						|
    name = "image_frame_opencv",
 | 
						|
    srcs = ["image_frame_opencv.cc"],
 | 
						|
    hdrs = ["image_frame_opencv.h"],
 | 
						|
    visibility = ["//visibility:public"],
 | 
						|
    deps = [
 | 
						|
        ":image_frame",
 | 
						|
        "//mediapipe/framework/formats:image_format_cc_proto",
 | 
						|
        "//mediapipe/framework/port:opencv_core",
 | 
						|
    ],
 | 
						|
)
 | 
						|
 | 
						|
cc_library(
 | 
						|
    name = "location",
 | 
						|
    srcs = ["location.cc"],
 | 
						|
    hdrs = ["location.h"],
 | 
						|
    defines = select({
 | 
						|
        "//conditions:default": [],
 | 
						|
        "//mediapipe:android": ["MEDIAPIPE_ANDROID_OPENCV"],
 | 
						|
    }),
 | 
						|
    visibility = ["//visibility:public"],
 | 
						|
    deps = [
 | 
						|
        "@com_google_protobuf//:protobuf",
 | 
						|
        "//mediapipe/framework/formats:location_data_cc_proto",
 | 
						|
        "//mediapipe/framework/formats/annotation:locus_cc_proto",
 | 
						|
        "@com_google_absl//absl/base:core_headers",
 | 
						|
        "@com_google_absl//absl/memory",
 | 
						|
        "@com_google_absl//absl/strings",
 | 
						|
        "//mediapipe/framework:port",
 | 
						|
        "//mediapipe/framework:type_map",
 | 
						|
        "//mediapipe/framework/tool:status_util",
 | 
						|
        "//mediapipe/framework/port:integral_types",
 | 
						|
        "//mediapipe/framework/port:logging",
 | 
						|
        "//mediapipe/framework/port:point",
 | 
						|
        "//mediapipe/framework/port:rectangle",
 | 
						|
        "//mediapipe/framework/port:ret_check",
 | 
						|
        "//mediapipe/framework/port:status",
 | 
						|
        "//mediapipe/framework/port:statusor",
 | 
						|
        "//mediapipe/framework/formats/annotation:rasterization_cc_proto",
 | 
						|
    ] + select({
 | 
						|
        "//conditions:default": [
 | 
						|
            "//mediapipe/framework/port:opencv_imgproc",
 | 
						|
        ],
 | 
						|
    }) + select({
 | 
						|
        "//conditions:default": [
 | 
						|
        ],
 | 
						|
        "//mediapipe:android": [],
 | 
						|
        "//mediapipe:apple": [],
 | 
						|
    }),
 | 
						|
    alwayslink = 1,
 | 
						|
)
 | 
						|
 | 
						|
cc_library(
 | 
						|
    name = "video_stream_header",
 | 
						|
    hdrs = ["video_stream_header.h"],
 | 
						|
    visibility = ["//visibility:public"],
 | 
						|
    deps = [
 | 
						|
        "//mediapipe/framework/formats:image_format_cc_proto",
 | 
						|
    ],
 | 
						|
)
 | 
						|
 | 
						|
cc_library(
 | 
						|
    name = "yuv_image",
 | 
						|
    hdrs = ["yuv_image.h"],
 | 
						|
    visibility = ["//visibility:public"],
 | 
						|
    deps = [
 | 
						|
        "//mediapipe/framework/port:integral_types",
 | 
						|
        "@libyuv",
 | 
						|
    ],
 | 
						|
)
 | 
						|
 | 
						|
cc_test(
 | 
						|
    name = "image_frame_opencv_test",
 | 
						|
    size = "small",
 | 
						|
    srcs = ["image_frame_opencv_test.cc"],
 | 
						|
    deps = [
 | 
						|
        ":image_frame",
 | 
						|
        ":image_frame_opencv",
 | 
						|
        "//mediapipe/framework/formats:image_format_cc_proto",
 | 
						|
        "//mediapipe/framework/port:gtest_main",
 | 
						|
        "//mediapipe/framework/port:integral_types",
 | 
						|
        "//mediapipe/framework/port:logging",
 | 
						|
    ],
 | 
						|
)
 | 
						|
 | 
						|
mediapipe_proto_library(
 | 
						|
    name = "rect_proto",
 | 
						|
    srcs = ["rect.proto"],
 | 
						|
    visibility = ["//visibility:public"],
 | 
						|
    deps = ["//mediapipe/framework/formats:location_data_proto"],
 | 
						|
)
 | 
						|
 | 
						|
mediapipe_register_type(
 | 
						|
    base_name = "rect",
 | 
						|
    include_headers = ["mediapipe/framework/formats/rect.pb.h"],
 | 
						|
    types = [
 | 
						|
        "::mediapipe::Rect",
 | 
						|
        "::mediapipe::NormalizedRect",
 | 
						|
        "::std::vector<::mediapipe::Rect>",
 | 
						|
        "::std::vector<::mediapipe::NormalizedRect>",
 | 
						|
    ],
 | 
						|
    deps = [":rect_cc_proto"],
 | 
						|
)
 | 
						|
 | 
						|
mediapipe_proto_library(
 | 
						|
    name = "landmark_proto",
 | 
						|
    srcs = ["landmark.proto"],
 | 
						|
    visibility = [
 | 
						|
        "//visibility:public",
 | 
						|
    ],
 | 
						|
)
 | 
						|
 | 
						|
mediapipe_register_type(
 | 
						|
    base_name = "landmark",
 | 
						|
    include_headers = ["mediapipe/framework/formats/landmark.pb.h"],
 | 
						|
    types = [
 | 
						|
        "::mediapipe::Landmark",
 | 
						|
        "::mediapipe::LandmarkList",
 | 
						|
        "::mediapipe::NormalizedLandmark",
 | 
						|
        "::mediapipe::NormalizedLandmarkList",
 | 
						|
        "::std::vector<::mediapipe::Landmark>",
 | 
						|
        "::std::vector<::mediapipe::LandmarkList>",
 | 
						|
        "::std::vector<::mediapipe::NormalizedLandmark>",
 | 
						|
        "::std::vector<::mediapipe::NormalizedLandmarkList>",
 | 
						|
    ],
 | 
						|
    deps = [":landmark_cc_proto"],
 | 
						|
)
 | 
						|
 | 
						|
# Expose the proto source files for building mediapipe AAR.
 | 
						|
filegroup(
 | 
						|
    name = "protos_src",
 | 
						|
    srcs = glob(["*.proto"]),
 | 
						|
    visibility = ["//mediapipe:__subpackages__"],
 | 
						|
)
 | 
						|
 | 
						|
cc_library(
 | 
						|
    name = "image",
 | 
						|
    srcs = ["image.cc"],
 | 
						|
    hdrs = ["image.h"],
 | 
						|
    copts = select({
 | 
						|
        "//mediapipe:ios": [
 | 
						|
            "-x objective-c++",
 | 
						|
            "-fobjc-arc",  # enable reference-counting
 | 
						|
        ],
 | 
						|
        "//conditions:default": [],
 | 
						|
    }),
 | 
						|
    visibility = ["//visibility:public"],
 | 
						|
    deps = [
 | 
						|
        "//mediapipe/framework/formats:image_frame",
 | 
						|
        "//mediapipe/framework/formats:image_format_cc_proto",
 | 
						|
        "@com_google_absl//absl/synchronization",
 | 
						|
        "//mediapipe/framework:port",
 | 
						|
        "//mediapipe/framework:type_map",
 | 
						|
        "//mediapipe/framework/port:logging",
 | 
						|
    ] + select({
 | 
						|
        "//conditions:default": [
 | 
						|
            "//mediapipe/gpu:gpu_buffer",
 | 
						|
            "//mediapipe/gpu:gpu_buffer_format",
 | 
						|
            "//mediapipe/gpu:gl_texture_buffer",
 | 
						|
        ],
 | 
						|
        "//mediapipe:ios": [
 | 
						|
            "//mediapipe/gpu:gpu_buffer",
 | 
						|
            "//mediapipe/gpu:gpu_buffer_format",
 | 
						|
        ],
 | 
						|
        "//mediapipe/gpu:disable_gpu": [],
 | 
						|
    }) + select({
 | 
						|
        "//conditions:default": [],
 | 
						|
        "//mediapipe:apple": [
 | 
						|
            "//mediapipe/objc:CFHolder",
 | 
						|
            "//mediapipe/objc:util",
 | 
						|
        ],
 | 
						|
    }),
 | 
						|
)
 | 
						|
 | 
						|
cc_library(
 | 
						|
    name = "image_multi_pool",
 | 
						|
    srcs = ["image_multi_pool.cc"],
 | 
						|
    hdrs = ["image_multi_pool.h"],
 | 
						|
    visibility = ["//visibility:public"],
 | 
						|
    deps = [
 | 
						|
        ":image",
 | 
						|
        "//mediapipe/framework/formats:image_frame_pool",
 | 
						|
        "//mediapipe/framework:port",
 | 
						|
        "//mediapipe/framework/port:logging",
 | 
						|
        "@com_google_absl//absl/memory",
 | 
						|
        "@com_google_absl//absl/synchronization",
 | 
						|
    ] + select({
 | 
						|
        "//conditions:default": [
 | 
						|
            "//mediapipe/gpu:gl_texture_buffer",
 | 
						|
            "//mediapipe/gpu:gl_texture_buffer_pool",
 | 
						|
            "//mediapipe/gpu:gl_base",
 | 
						|
            "//mediapipe/gpu:gpu_buffer",
 | 
						|
        ],
 | 
						|
        "//mediapipe:ios": [
 | 
						|
            "//mediapipe/gpu:gl_base",
 | 
						|
            "//mediapipe/gpu:gpu_buffer",
 | 
						|
        ],
 | 
						|
        "//mediapipe/gpu:disable_gpu": [],
 | 
						|
    }) + select({
 | 
						|
        "//conditions:default": [],
 | 
						|
        "//mediapipe:apple": [
 | 
						|
            "//mediapipe/gpu:pixel_buffer_pool_util",
 | 
						|
            "//mediapipe/objc:CFHolder",
 | 
						|
        ],
 | 
						|
    }),
 | 
						|
)
 | 
						|
 | 
						|
cc_library(
 | 
						|
    name = "image_opencv",
 | 
						|
    srcs = [
 | 
						|
        "image_opencv.cc",
 | 
						|
    ],
 | 
						|
    hdrs = [
 | 
						|
        "image_opencv.h",
 | 
						|
    ],
 | 
						|
    visibility = ["//visibility:public"],
 | 
						|
    deps = [
 | 
						|
        ":image",
 | 
						|
        "//mediapipe/framework/formats:image_format_cc_proto",
 | 
						|
        "//mediapipe/framework/port:logging",
 | 
						|
        "//mediapipe/framework/port:opencv_core",
 | 
						|
        "//mediapipe/framework/port:statusor",
 | 
						|
    ],
 | 
						|
)
 | 
						|
 | 
						|
cc_library(
 | 
						|
    name = "image_frame_pool",
 | 
						|
    srcs = ["image_frame_pool.cc"],
 | 
						|
    hdrs = ["image_frame_pool.h"],
 | 
						|
    visibility = ["//visibility:public"],
 | 
						|
    deps = [
 | 
						|
        ":image_frame",
 | 
						|
        "@com_google_absl//absl/memory",
 | 
						|
        "@com_google_absl//absl/synchronization",
 | 
						|
    ],
 | 
						|
)
 | 
						|
 | 
						|
cc_test(
 | 
						|
    name = "image_frame_pool_test",
 | 
						|
    size = "small",
 | 
						|
    srcs = ["image_frame_pool_test.cc"],
 | 
						|
    tags = ["linux"],
 | 
						|
    deps = [
 | 
						|
        ":image_frame_pool",
 | 
						|
        "//mediapipe/framework/port:gtest_main",
 | 
						|
        "//mediapipe/framework/port:status",
 | 
						|
        "@com_google_absl//absl/memory",
 | 
						|
    ],
 | 
						|
)
 | 
						|
 | 
						|
cc_library(
 | 
						|
    name = "tensor",
 | 
						|
    srcs = ["tensor.cc"],
 | 
						|
    hdrs = ["tensor.h"],
 | 
						|
    copts = select({
 | 
						|
        "//mediapipe:apple": [
 | 
						|
            "-x objective-c++",
 | 
						|
            "-fobjc-arc",  # enable reference-counting
 | 
						|
        ],
 | 
						|
        "//conditions:default": [],
 | 
						|
    }),
 | 
						|
    linkopts = select({
 | 
						|
        "//mediapipe:ios": [
 | 
						|
            "-framework CoreVideo",
 | 
						|
            "-framework MetalKit",
 | 
						|
        ],
 | 
						|
        "//conditions:default": [],
 | 
						|
    }),
 | 
						|
    visibility = ["//visibility:public"],
 | 
						|
    deps = [
 | 
						|
        "@com_google_absl//absl/memory",
 | 
						|
        "@com_google_absl//absl/synchronization",
 | 
						|
        "//mediapipe/framework:port",
 | 
						|
        "//mediapipe/framework/port:logging",
 | 
						|
    ] + select({
 | 
						|
        "//mediapipe/gpu:disable_gpu": [],
 | 
						|
        "//conditions:default": [
 | 
						|
            "//mediapipe/gpu:gl_base",
 | 
						|
            "//mediapipe/gpu:gl_context",
 | 
						|
        ],
 | 
						|
    }),
 | 
						|
)
 | 
						|
 | 
						|
cc_test(
 | 
						|
    name = "tensor_test",
 | 
						|
    srcs = ["tensor_test.cc"],
 | 
						|
    deps = [
 | 
						|
        ":tensor",
 | 
						|
        "//mediapipe/framework/port:gtest_main",
 | 
						|
    ] + select({
 | 
						|
        "//conditions:default": [
 | 
						|
            "//mediapipe/gpu:gl_calculator_helper",
 | 
						|
            "//mediapipe/gpu:gpu_buffer_format",
 | 
						|
        ],
 | 
						|
        "//mediapipe/gpu:disable_gpu": [],
 | 
						|
    }),
 | 
						|
)
 |