Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I install/configure OpenCV3.2.0 with C++, Visual Studio 2017?

Tags:

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?

like image 509
Vijay Nirmal Avatar asked May 04 '17 15:05

Vijay Nirmal


2 Answers

Since the Doc from official OpenCV tutorial is outdated, I will suggest:

  1. get VS-2017 with full compiler like:

    enter image description here

  2. get the newest CMake (uninstall older versions)

  3. get from github the sourceCode here and here and place those in C:/openCV folder, create a BUILD folder there too

  4. open Cmake, select the opencv master folder... in the build write the build directory like:

enter image description here

  1. click configure, select visual studio 15 2017 and leave selected "use default native compilers", then press "finish"...

enter image description here

6.1 now you should see cmake doing its job :)

enter image description here

  1. once configuration is done set the opencv extra modules path and click configure again, and when is done click generate! :)

    enter image description here

  2. 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.

  3. 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.

  4. 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.

like image 131
ΦXocę 웃 Пepeúpa ツ Avatar answered Oct 10 '22 05:10

ΦXocę 웃 Пepeúpa ツ


Additonal tip to the accepted answer - if you get an error like this:

Invalid escape sequence \ o

when you copy and paste the filesystem paths, make sure you use forward slash ( / ) instead of backward slash, so

C:\openCV\opencv_contrib-3.2.0\modules 

Must be

C:/openCV/opencv_contrib-3.2.0/modules 

Instead. Otherwise, you will get errors that escape sequence \o does not exist.

like image 29
Martin Zikmund Avatar answered Oct 10 '22 07:10

Martin Zikmund