博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Matconvnet工具箱在Matlab中的安装
阅读量:5111 次
发布时间:2019-06-13

本文共 2124 字,大约阅读时间需要 7 分钟。

安装

 

  • 编译前确保Matab已绑定C++编译器,否则使用命令>>mex -setup 进行绑定编译器。
  • 将Matalb的工作路径切换到Matconvnet目录下,../matconvnet-1.0-beta23。
  • 编译工具箱,>>run matlab/vl_compilenn ;
  • 安装工具箱,>>run matlab/vl_setupnn ;

 

测试

 

  • 在Matlab工作空间输入一下代码,并运行;成功显示图片说明安装成功。

 

 

% Download a pre-trained CNN from the web (needed once).urlwrite('http://www.vlfeat.org/matconvnet/models/imagenet-vgg-f.mat','imagenet-vgg-f.mat') ;% Load a model and upgrade it to MatConvNet current version.net = load('imagenet-vgg-f.mat') ;net = vl_simplenn_tidy(net) ;% Obtain and preprocess an image.im = imread('peppers.png') ;im_ = single(im) ; % note: 255 rangeim_ = imresize(im_, net.meta.normalization.imageSize(1:2)) ;im_ = im_ - net.meta.normalization.averageImage ;% Run the CNN.res = vl_simplenn(net, im_) ;% Show the classification result.scores = squeeze(gather(res(end).x)) ;[bestScore, best] = max(scores) ;figure(1) ; clf ; imagesc(im) ;title(sprintf('%s (%d), score %.3f', net.meta.classes.description{best}, best, bestScore)) ;

 

 

Using DAG models

The example above exemplifies using a model using the SimpleNN wrapper. More complex models use the DagNN wrapper instead. For example, to run GoogLeNet use:

% setup MatConvNetrun  matlab/vl_setupnn% download a pre-trained CNN from the web (needed once)urlwrite(...  'http://www.vlfeat.org/matconvnet/models/imagenet-googlenet-dag.mat', ...  'imagenet-googlenet-dag.mat') ;% load the pre-trained CNN net = dagnn.DagNN.loadobj(load('imagenet-googlenet-dag.mat')) ; net.mode = 'test' ; % load and preprocess an image im = imread('peppers.png') ; im_ = single(im) ; % note: 0-255 range im_ = imresize(im_, net.meta.normalization.imageSize(1:2)) ; im_ = bsxfun(@minus, im_, net.meta.normalization.averageImage) ; % run the CNN net.eval({ 'data', im_}) ; % obtain the CNN otuput scores = net.vars(net.getVarIndex('prob')).value ; scores = squeeze(gather(scores)) ; % show the classification results [bestScore, best] = max(scores) ; figure(1) ; clf ; imagesc(im) ; title(sprintf('%s (%d), score %.3f',... net.meta.classes.description{best}, best, bestScore)) ;

http://www.vlfeat.org/matconvnet/quick/

 

 

 

转载于:https://www.cnblogs.com/wylhouse/p/7019885.html

你可能感兴趣的文章
Sql Server 中由数字转换为指定长度的字符串
查看>>
Java 多态 虚方法
查看>>
Unity之fragment shader中如何获得视口空间中的坐标
查看>>
万能的SQLHelper帮助类
查看>>
tmux的简单快捷键
查看>>
[Swift]LeetCode922.按奇偶排序数组 II | Sort Array By Parity II
查看>>
Html5 离线页面缓存
查看>>
《绿色·精简·性感·迷你版》易语言,小到不可想象
查看>>
Android打包key密码丢失找回
查看>>
VC6.0调试技巧(一)(转)
查看>>
类库与框架,强类型与弱类型的闲聊
查看>>
webView添加头视图
查看>>
php match_model的简单使用
查看>>
在NT中直接访问物理内存
查看>>
Intel HEX 文件格式
查看>>
SIP服务器性能测试工具SIPp使用指导(转)
查看>>
回调没用,加上iframe提交表单
查看>>
(安卓)一般安卓开始界面 Loding 跳转 实例 ---亲测!
查看>>
Mysql 索引优化 - 1
查看>>
LeetCode(3) || Median of Two Sorted Arrays
查看>>