Blame view

3rdparty/opencv-4.5.4/modules/dnn/src/tensorflow/tf_io.cpp 1.93 KB
f4334277   Hu Chunming   提交3rdparty
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
  // 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