# 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 = "yt8m_feature_extraction_calculators", deps = [ "//mediapipe/calculators/audio:audio_decoder_calculator", "//mediapipe/calculators/audio:basic_time_series_calculators", "//mediapipe/calculators/audio:mfcc_mel_calculators", "//mediapipe/calculators/audio:rational_factor_resample_calculator", "//mediapipe/calculators/audio:spectrogram_calculator", "//mediapipe/calculators/audio:stabilized_log_calculator", "//mediapipe/calculators/audio:time_series_framer_calculator", "//mediapipe/calculators/core:add_header_calculator", "//mediapipe/calculators/core:matrix_multiply_calculator", "//mediapipe/calculators/core:matrix_subtract_calculator", "//mediapipe/calculators/core:matrix_to_vector_calculator", "//mediapipe/calculators/core:packet_cloner_calculator", "//mediapipe/calculators/core:packet_resampler_calculator", "//mediapipe/calculators/tensorflow:image_frame_to_tensor_calculator", "//mediapipe/calculators/tensorflow:matrix_to_tensor_calculator", "//mediapipe/calculators/tensorflow:pack_media_sequence_calculator", "//mediapipe/calculators/tensorflow:string_to_sequence_example_calculator", "//mediapipe/calculators/tensorflow:tensor_squeeze_dimensions_calculator", "//mediapipe/calculators/tensorflow:tensor_to_matrix_calculator", "//mediapipe/calculators/tensorflow:tensorflow_inference_calculator", "//mediapipe/calculators/tensorflow:tensorflow_session_from_frozen_graph_calculator", "//mediapipe/calculators/tensorflow:unpack_media_sequence_calculator", "//mediapipe/calculators/video:opencv_video_decoder_calculator", ], ) cc_library( name = "yt8m_inference_calculators_deps", deps = [ "//mediapipe/calculators/core:concatenate_vector_calculator", "//mediapipe/calculators/core:dequantize_byte_array_calculator", "//mediapipe/calculators/core:packet_cloner_calculator", "//mediapipe/calculators/core:side_packet_to_stream_calculator", "//mediapipe/calculators/core:string_to_int_calculator", "//mediapipe/calculators/tensorflow:lapped_tensor_buffer_calculator", "//mediapipe/calculators/tensorflow:string_to_sequence_example_calculator", "//mediapipe/calculators/tensorflow:tensor_to_vector_float_calculator", "//mediapipe/calculators/tensorflow:tensorflow_inference_calculator", "//mediapipe/calculators/tensorflow:tensorflow_session_from_saved_model_calculator", "//mediapipe/calculators/tensorflow:tfrecord_reader_calculator", "//mediapipe/calculators/tensorflow:unpack_media_sequence_calculator", "//mediapipe/calculators/tensorflow:unpack_yt8m_sequence_example_calculator", "//mediapipe/calculators/tensorflow:vector_float_to_tensor_calculator", "//mediapipe/calculators/tensorflow:vector_int_to_tensor_calculator", "//mediapipe/calculators/util:annotation_overlay_calculator", "//mediapipe/calculators/util:labels_to_render_data_calculator", "//mediapipe/calculators/util:local_file_contents_calculator", "//mediapipe/calculators/util:top_k_scores_calculator", "//mediapipe/calculators/video:opencv_video_decoder_calculator", "//mediapipe/calculators/video:opencv_video_encoder_calculator", ], )