码迷,mamicode.com
首页 > Windows程序 > 详细

windows配置caffe及matlab接口编译和调用(cpu和gpu)

时间:2016-09-27 17:45:33      阅读:3201      评论:0      收藏:0      [点我收藏+]

标签:

环境:windows 7+matlab2016a+vs2013

caffe下载地址:https://github.com/BVLC/caffe/tree/windows

 

1 进入caffe-windows的windows文件夹,Copy .\windows\CommonSettings.props.example to .\windows\CommonSettings.props

 

2 打开caffe工程,编辑CommonSettings.props文件,以下是cpu版本设置

        <CpuOnlyBuild>true</CpuOnlyBuild>
        <UseCuDNN>false</UseCuDNN>
        <CudaVersion>7.5</CudaVersion>
        <PythonSupport>false</PythonSupport>
        <MatlabSupport>true</MatlabSupport>
        <CudaDependencies></CudaDependencies>

 

    <PropertyGroup Condition="‘$(MatlabSupport)‘==‘true‘">
        <MatlabDir>C:\Program Files\MATLAB\R2016a</MatlabDir>
        <LibraryPath>$(MatlabDir)\extern\lib\win64\microsoft;$(LibraryPath)</LibraryPath>
        <IncludePath>$(MatlabDir)\extern\include;$(IncludePath)</IncludePath>
    </PropertyGroup>

3  选择matcaffe项目,点击编译(会自动去下载第三方库),在Build\x64\Release会生成相应的文件

4 将上面Build\x64\Release绝对路径加入到系统环境path变量中,同时将Build\x64\Release\matcaffe加入到matlab路径中。

5 重新启动matlab,调用caffe.reset_all(),则说明ok。

>> caffe.reset_all();
Cleared 0 solvers and 0 stand-alone nets
>>

windows配置caffe及matlab接口编译和调用(cpu和gpu)

标签:

原文地址:http://www.cnblogs.com/linyuanzhou/p/5913505.html

(0)
(1)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!