其他分享
首页 > 其他分享> > win10下编译安装ncnn

win10下编译安装ncnn

作者:互联网

win10下编译安装ncnn

第一步 自行安装VS2017、CMake软件。

Cmake可以在网盘自取:

链接:https://pan.baidu.com/s/16w_ZVHDb4_y-56WmDHMXlg
提取码:hezy

下载protobuf和ncnn源码

protobuf下载链接:https://github.com/google/protobuf/archive/v3.4.0.zip

ncnn下载链接:https://github.com/Tencent/ncnn

编译protobuf

将protobuf解压后启动VS2017的工具命令(这里别弄错了了)

cd C:\protobuf-3.4.0
mkdir build-vs2017
cd build-vs2017
cmake -G"NMake Makefiles" -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=%cd%/install -Dprotobuf_BUILD_TESTS=OFF -Dprotobuf_MSVC_STATIC_RUNTIME=OFF ../cmake

如下图:image-20210919094915444

然后执行编译

nmake

如下图:

image-20210919095940483

在执行命令安装

nmake install

image-20210919100104587

编译ncnn

进入到ncnn目录下面

cd C:\Users\WH\Downloads\ncnn-master

创建文件夹,并编译。

注意:cmake这条执行需要指定“C:\Users\WH\Downloads\protobuf-3.4.0”的目录,根据自己的目录配置。

mkdir -p build-vs2017
cd build-vs2017
cmake -G"NMake Makefiles" -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=%cd%/install -DProtobuf_INCLUDE_DIR=C:\Users\WH\Downloads\protobuf-3.4.0/build-vs2017/install/include -DProtobuf_LIBRARIES=C:\Users\WH\Downloads\protobuf-3.4.0/build-vs2017/install/lib/libprotobuf.lib -DProtobuf_PROTOC_EXECUTABLE=C:\Users\WH\Downloads\protobuf-3.4.0/build-vs2017/install/bin/protoc.exe ..

image-20210919101054392

编译ncnn

nmake

image-20210919103403777

安装

nmake install

``

[外链图片转存中…(img-LbwekaaE-1635234969375)]

安装

nmake install

image-20210919103226978

标签:protobuf,vs2017,编译,ncnn,install,win10,build
来源: https://blog.csdn.net/hhhhhhhhhhwwwwwwwwww/article/details/120974026