matlab 2016 a+win 10+CPU+caffeテストなし
2728 ワード
clear
clc
% addpath('D:/caffe/caffe-master/matlab/demo');
im = imread('D:/caffe/caffe-master/examples/images/cat.jpg');%
figure;imshow(im);%
[scores, maxlabel] = classification_demo(im, 0);% 0 CPU,1 GPU
maxlabel %
figure;plot(scores);%
axis([0, 999, -0.1, 0.5]);%
grid on %
fid = fopen('synset_words.txt', 'r');
i=0;
while ~feof(fid)
i=i+1;
lin = fgetl(fid);
lin = strtrim(lin);
if(i==maxlabel)
fprintf('the label of %d is %s
',i,lin)
break
end
end
error('Please run this demo from caffe/matlab/demo');
error('Please download CaffeNet from Model Zoo before you run this demo');
がclassification_demo.m注釈にはこう書かれています.% IMPORTANT: before you run this demo, you should download BVLC CaffeNet
% from Model Zoo (http://caffe.berkeleyvision.org/model_zoo.html)
ですが、ここではお勧めしません.どうせ私はどうやってやったのか分かりません.できるhttps://github.com/caffe2/caffe2/wiki/Model-Zooここで必要なモデルをダウンロードし、caffe/modelディレクトリにコピーすればいいです.