48 lines
2.1 KiB
Python
48 lines
2.1 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.
|
||
|
|
||
|
licenses(["notice"])
|
||
|
|
||
|
package(default_visibility = ["//visibility:public"])
|
||
|
|
||
|
cc_library(
|
||
|
name = "clipped_images_from_file_at_24fps_calculators",
|
||
|
deps = [
|
||
|
"//mediapipe/calculators/core:packet_resampler_calculator",
|
||
|
"//mediapipe/calculators/image:opencv_image_encoder_calculator",
|
||
|
"//mediapipe/calculators/image:scale_image_calculator",
|
||
|
"//mediapipe/calculators/tensorflow:pack_media_sequence_calculator",
|
||
|
"//mediapipe/calculators/tensorflow:string_to_sequence_example_calculator",
|
||
|
"//mediapipe/calculators/tensorflow:unpack_media_sequence_calculator",
|
||
|
"//mediapipe/calculators/video:opencv_video_decoder_calculator",
|
||
|
],
|
||
|
)
|
||
|
|
||
|
cc_library(
|
||
|
name = "tvl1_flow_and_rgb_from_file_calculators",
|
||
|
deps = [
|
||
|
"//mediapipe/calculators/core:packet_inner_join_calculator",
|
||
|
"//mediapipe/calculators/core:packet_resampler_calculator",
|
||
|
"//mediapipe/calculators/core:sequence_shift_calculator",
|
||
|
"//mediapipe/calculators/image:opencv_image_encoder_calculator",
|
||
|
"//mediapipe/calculators/image:scale_image_calculator",
|
||
|
"//mediapipe/calculators/tensorflow:pack_media_sequence_calculator",
|
||
|
"//mediapipe/calculators/tensorflow:string_to_sequence_example_calculator",
|
||
|
"//mediapipe/calculators/tensorflow:unpack_media_sequence_calculator",
|
||
|
"//mediapipe/calculators/video:flow_to_image_calculator",
|
||
|
"//mediapipe/calculators/video:opencv_video_decoder_calculator",
|
||
|
"//mediapipe/calculators/video:tvl1_optical_flow_calculator",
|
||
|
],
|
||
|
)
|