caffe-python简单使用
2021/6/10 20:23:07
本文主要是介绍caffe-python简单使用,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
import caffe import numpy as np import matplotlib.pyplot as plt import os import PIL from PIL import Image import sys deploy_file = 'D:/Program_Code/PY/caffe/deploy.prototxt' model_file = 'D:/Program_Code/PY/caffe/bvlc_googlenet.caffemodel' # gpu模式 # caffe.set_device(0) caffe.set_mode_cpu() # 定义网络模型 net = caffe.Classifier(deploy_file, # 调用deploy文件 model_file, # 调用模型文件 channel_swap=(2, 1, 0), # caffe中图片是BGR格式,而原始格式是RGB,所以要转化 raw_scale=255, # python中将图片存储为[0, 1],而caffe中将图片存储为[0, 255],所以需要一个转换 image_dims=(227, 227)) # 输入模型的图片要是227*227的图片 print "1" print "***************************************" print("net: ", net) # 分类标签文件 # imagenet_labels_filename ='D:/Program_Code/PY/caffe/synset_words.txt' # 载入分类标签文件 labels = np.loadtxt(r'D:/Program_Code/PY/caffe/synset_words.txt', delimiter='\t', dtype=str) print "2" # 对目标路径中的图像,遍历并分类 for root, dirs, files in os.walk('D:/Program_Code/PY/caffe/images'): for file in files: # 加载要分类的图片 image_file = os.path.join(root, file) input_image = caffe.io.load_image(image_file) # 打印图片路径及名称 image_path = os.path.join(root, file) print(image_path) print "3" # 显示图片 # img=Image.open(image_path) # plt.imshow(img) # plt.axis('off') # plt.show() # 预测图片类别 prediction = net.predict([input_image]) print 'predicted class:', prediction[0].argmax() print "4" # 输出概率最大的前5个预测结果 top_k = prediction[0].argsort()[::-1] for node_id in top_k: # 获取分类名称 human_string = labels[node_id] # 获取该分类的置信度 score = prediction[0][node_id] print('%s (score = %.5f)' % (human_string, score)) # 1、caffe首先会输出模型结构描述文件内容 # 2、输出每一层之间的数据flow详细状态信息
这篇关于caffe-python简单使用的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-24Python编程基础详解
- 2024-11-21Python编程基础教程
- 2024-11-20Python编程基础与实践
- 2024-11-20Python编程基础与高级应用
- 2024-11-19Python 基础编程教程
- 2024-11-19Python基础入门教程
- 2024-11-17在FastAPI项目中添加一个生产级别的数据库——本地环境搭建指南
- 2024-11-16`PyMuPDF4LLM`:提取PDF数据的神器
- 2024-11-16四种数据科学Web界面框架快速对比:Rio、Reflex、Streamlit和Plotly Dash
- 2024-11-14获取参数学习:Python编程入门教程