Internal change

PiperOrigin-RevId: 490196129
This commit is contained in:
vrabaud 2022-11-22 03:10:35 -08:00 committed by Copybara-Service
parent d648926155
commit 872d1afda7
2 changed files with 32 additions and 0 deletions

View File

@ -311,6 +311,17 @@ cc_library(
],
)
cc_library(
name = "opencv_videoio",
hdrs = ["opencv_videoio_inc.h"],
visibility = ["//visibility:public"],
deps = [
":opencv_core",
"//mediapipe/framework:port",
"//third_party:opencv",
],
)
cc_library(
name = "parse_text_proto",
hdrs = [

View File

@ -0,0 +1,21 @@
// Copyright 2022 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.
#ifndef MEDIAPIPE_PORT_OPENCV_VIDEOIO_INC_H_
#define MEDIAPIPE_PORT_OPENCV_VIDEOIO_INC_H_
#include "mediapipe/framework/port/opencv_core_inc.h"
#include "third_party/OpenCV/videoio.hpp"
#endif // MEDIAPIPE_PORT_OPENCV_VIDEOIO_INC_H_