mirror of
https://github.com/opencv/opencv.git
synced 2025-06-22 03:22:10 +08:00
67 lines
1.9 KiB
C++
67 lines
1.9 KiB
C++
// This file is part of OpenCV project.
|
|
// It is subject to the license terms in the LICENSE file found in the top-level directory
|
|
// of this distribution and at http://opencv.org/license.html.
|
|
|
|
// Copyright (C) 2016, Intel Corporation, all rights reserved.
|
|
// Third party copyrights are property of their respective owners.
|
|
|
|
/*
|
|
Implementation of various functions which are related to Tensorflow models reading.
|
|
*/
|
|
|
|
#include "../precomp.hpp"
|
|
|
|
#ifdef HAVE_PROTOBUF
|
|
#include <google/protobuf/io/coded_stream.h>
|
|
#include <google/protobuf/io/zero_copy_stream_impl.h>
|
|
#include <google/protobuf/text_format.h>
|
|
|
|
#include <opencv2/core.hpp>
|
|
|
|
#include <map>
|
|
#include <string>
|
|
#include <fstream>
|
|
#include <vector>
|
|
|
|
#include "tf_io.hpp"
|
|
|
|
#include "../caffe/caffe_io.hpp"
|
|
#include "../caffe/glog_emulator.hpp"
|
|
|
|
namespace cv {
|
|
namespace dnn {
|
|
|
|
using std::string;
|
|
using std::map;
|
|
using namespace tensorflow;
|
|
using namespace ::google::protobuf;
|
|
using namespace ::google::protobuf::io;
|
|
|
|
void ReadTFNetParamsFromBinaryFileOrDie(const char* param_file,
|
|
tensorflow::GraphDef* param) {
|
|
CHECK(ReadProtoFromBinaryFile(param_file, param))
|
|
<< "Failed to parse GraphDef file: " << param_file;
|
|
}
|
|
|
|
void ReadTFNetParamsFromBinaryBufferOrDie(const char* data, size_t len,
|
|
tensorflow::GraphDef* param) {
|
|
CHECK(ReadProtoFromBinaryBuffer(data, len, param))
|
|
<< "Failed to parse GraphDef buffer";
|
|
}
|
|
|
|
void ReadTFNetParamsFromTextFileOrDie(const char* param_file,
|
|
tensorflow::GraphDef* param) {
|
|
CHECK(ReadProtoFromTextFile(param_file, param))
|
|
<< "Failed to parse GraphDef file: " << param_file;
|
|
}
|
|
|
|
void ReadTFNetParamsFromTextBufferOrDie(const char* data, size_t len,
|
|
tensorflow::GraphDef* param) {
|
|
CHECK(ReadProtoFromTextBuffer(data, len, param))
|
|
<< "Failed to parse GraphDef buffer";
|
|
}
|
|
|
|
}
|
|
}
|
|
#endif
|