How can I install/configure OpenCV3.2.0 with C++, Visual Studio 2017?(如何使用 C++、Visual Studio 2017 安装/配置 OpenCV3.2.0?)
问题描述
我想在 Visual Studio 2017 中使用 OpenCV 来做 C++ 程序.
为此,我遵循了
获取最新的
- 单击配置,选择 Visual Studio 15 2017 并选择使用默认本机编译器",然后按完成"...
6.1 现在你应该看到 cmake 完成它的工作:)
配置完成后设置opencv额外模块路径并再次点击配置,完成后点击生成!:)
生成完成后点击打开项目",这将在visual studio中打开一个名为opencv"的巨大项目,现在您可以关闭cmake,我们不再需要它了.
现在,当解决方案准备好时,请确保您处于调试"配置中并右键单击ALL_BUILD"然后构建"(可能需要一段时间)一旦构建成功更改为发布" 配置并右键单击ALL_BUILD",然后再次构建".
现在,请确保您在调试"配置中并右键单击安装",然后在构建成功后构建"(可能需要一段时间)更改为发布"配置并右键单击在安装"然后再次构建".
I want to use OpenCV in Visual Studio 2017 to do c++ program.
To do it, I followed Setting Up OpenCV in Visual Studio video. In that, he said vc14 should be set as environmental variables for VS2015. There is no vc16 for VS2017. So how do I do it for VS2017? And are there any other video instruction changes to be made if I am to use VS2017?
Since the Doc from official OpenCV tutorial is outdated, I will suggest:
get VS-2017 with full compiler like:
get the newest CMake (uninstall older versions)
get from github the sourceCode here and here and place those in C:/openCV folder, create a BUILD folder there too
open Cmake, select the opencv master folder... in the build write the build directory like:
- click configure, select visual studio 15 2017 and leave selected "use default native compilers", then press "finish"...
6.1 now you should see cmake doing its job :)
once configuration is done set the opencv extra modules path and click configure again, and when is done click generate! :)
when generation is done click "open project", this will open a huge project in visual studio named "opencv", now you can close cmake, we dont need that anymore.
now, when the solution is ready, be sure you are in "debug" conf and do right click on "ALL_BUILD" and then "build" (that can take a while) once build succeed change to "release" config and do right click on "ALL_BUILD" and then "build" again.
now,be sure you are in "debug" conf and do right click on "INSTALL" and then "build" (that can take a while) once build succeed change to "release" config and do right click on "INSTALL" and then "build" again.
这篇关于如何使用 C++、Visual Studio 2017 安装/配置 OpenCV3.2.0?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何使用 C++、Visual Studio 2017 安装/配置 OpenCV3.2


基础教程推荐
- 为什么 typeid.name() 使用 GCC 返回奇怪的字符以及如 2022-09-16
- 如果我为无符号变量分配负值会发生什么? 2022-01-01
- CString 到 char* 2021-01-01
- 为什么派生模板类不能访问基模板类的标识符? 2021-01-01
- 非静态 const 成员,不能使用默认赋值运算符 2022-10-09
- 为什么 RegOpenKeyEx() 在 Vista 64 位上返回错误代码 2021-01-01
- 通过引用传递 C++ 迭代器有什么问题? 2022-01-01
- 初始化列表*参数*评估顺序 2021-01-01
- GDB 显示调用堆栈上函数地址的当前编译二进制文 2022-09-05
- 我应该对 C++ 中的成员变量和函数参数使用相同的名称吗? 2021-01-01