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


基础教程推荐
- 如何定义双括号/双迭代器运算符,类似于向量的向量? 2022-01-01
- 如何在 C++ 中处理或避免堆栈溢出 2022-01-01
- C++ 标准:取消引用 NULL 指针以获取引用? 2021-01-01
- 设计字符串本地化的最佳方法 2022-01-01
- 运算符重载的基本规则和习语是什么? 2022-10-31
- 什么是T&&(双与号)在 C++11 中是什么意思? 2022-11-04
- C++ 程序在执行 std::string 分配时总是崩溃 2022-01-01
- C++,'if' 表达式中的变量声明 2021-01-01
- 调用std::Package_TASK::Get_Future()时可能出现争用情况 2022-12-17
- 您如何将 CreateThread 用于属于类成员的函数? 2021-01-01