win10下编译安装ncnn

Posted AI浩

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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

如下图:

然后执行编译

nmake

如下图:

在执行命令安装

nmake install

编译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 ..

编译ncnn

nmake

安装

nmake install

``

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

安装

nmake install

以上是关于win10下编译安装ncnn的主要内容,如果未能解决你的问题,请参考以下文章

Win10系统下编译GEOS3.6.2

vcpkg win10下编译zlib失败

Win11环境下编译Theia源码

[原]win10下编译lua5.3.4

Win64下编译OSG详细过程(Win10+VS2015+OSG3.6.3)

在VS2013下编译的C ++代码无法在VS2015下编译