NCNN实战

参考:NCNN官方推荐指南
https://github.com/Tencent/ncnn/wiki/use-ncnn-with-alexnet.zh

  • caffe模型和参数的获取 deploy.prototxt 和 caffemodel
  • 模型转换,得到.param.bin 和.bin
  • 加载网络模型和参数load_model和load_param
  • 输入图片、转换格式,网络输入,得到预测结果
  • 整理预测结果格式,显示

学习资源:

  • MobileNetSSD通过Ncnn前向推理框架在Android端的使用--Cmake编译(目标检测 objection detection)  https://blog.csdn.net/qq_33431368/article/details/85009758 
  • 源码地址:https://github.com/chehongshu/ncnnforandroid_objectiondetection_Mobilenetssd

在这里插入图片描述

你可能感兴趣的:(移动端深度学习)