C++调用tensorflow动态库,实现inference,模型上线

参考:

  1. tensorflow c++ API加载.pb模型文件并预测图片  https://www.cnblogs.com/buyizhiyou/p/10412967.html

  2. 【填坑】基于TensorFlow C++ API 的 gRPC 服务 https://www.jianshu.com/p/725c45353c9d

  3. Tensorflow C++ 编译和调用图模型  https://blog.csdn.net/rockingdingo/article/details/75452711 对应的github:https://github.com/rockingdingo/tensorflow-tutorial

  4. tensorflow实现将ckpt转pb文件 https://blog.csdn.net/guyuealian/article/details/82218092 对应的github:https://github.com/PanJinquan/tensorflow_models_learning


 

tensorflow tensor 和 opencv Mat格式互换:

  1. Mat与Tensor的互相转化 https://www.lizenghai.com/archives/21593.html  (这篇应该有用)
  2. opencv3学习:reshape函数 https://www.cnblogs.com/denny402/p/5035535.html
  3. c++ tensorflow数据转换 https://blog.csdn.net/qq_34798326/article/details/85325089

 


 

你可能感兴趣的:(C++,Tensorflow)