b30085cbbd6fa0ca91f4738349abc49963215335
[platform/upstream/opencv.git] / doc / tutorials / introduction / windows_install / windows_install.markdown
1 Installation in Windows {#tutorial_windows_install}
2 =======================
3
4 The description here was tested on Windows 7 SP1. Nevertheless, it should also work on any other
5 relatively modern version of Windows OS. If you encounter errors after following the steps described
6 below, feel free to contact us via our [OpenCV Q&A forum](http://answers.opencv.org). We'll do our
7 best to help you out.
8
9 @note To use the OpenCV library you have two options: @ref tutorial_windows_install_prebuilt or
10 @ref tutorial_windows_install_build. While the first one is easier to complete, it only works if you are coding
11 with the latest Microsoft Visual Studio IDE and do not take advantage of the most advanced
12 technologies we integrate into our library. .. _Windows_Install_Prebuild:
13
14 Installation by Using the Pre-built Libraries {#tutorial_windows_install_prebuilt}
15 =============================================
16
17 -#  Launch a web browser of choice and go to our [page on
18     Sourceforge](http://sourceforge.net/projects/opencvlibrary/files/opencv-win/).
19 -#  Choose a build you want to use and download it.
20 -#  Make sure you have admin rights. Unpack the self-extracting archive.
21 -#  You can check the installation at the chosen path as you can see below.
22
23     ![](images/OpenCV_Install_Directory.png)
24
25 -#  To finalize the installation go to the @ref tutorial_windows_install_path section.
26
27 Installation by Using git-bash (version>=2.14.1) and cmake (version >=3.9.1){#tutorial_windows_gitbash_build}
28 ===============================================================
29
30 -#  You must download [cmake (version >=3.9.1)](https://cmake.org) and install it. You must add cmake to PATH variable during installation
31
32 -#  You must install [git-bash (version>=2.14.1)](https://git-for-windows.github.io/). Don't add git to PATH variable during installation
33
34 -#  Run git-bash. You observe a command line window.
35 Suppose you want to build opencv and opencv_contrib in c:/lib
36
37 -#  In git command line enter following command (if folder does not exist) :
38 @code{.bash}
39 mkdir /c/lib
40 cd /c/lib
41 @endcode
42
43 -#  save this script with name installOCV.sh in c:/lib
44 @code{.bash}
45 #!/bin/bash -e
46 myRepo=$(pwd)
47 CMAKE_CONFIG_GENERATOR="Visual Studio 14 2015 Win64"
48 if [  ! -d "$myRepo/opencv"  ]; then
49     echo "cloning opencv"
50     git clone https://github.com/opencv/opencv.git
51     mkdir -p Build/opencv
52     mkdir -p Install/opencv
53 else
54     cd opencv
55     git pull --rebase
56     cd ..
57 fi
58 if [  ! -d "$myRepo/opencv_contrib"  ]; then
59     echo "cloning opencv_contrib"
60     git clone https://github.com/opencv/opencv_contrib.git
61     mkdir -p Build/opencv_contrib
62 else
63     cd opencv_contrib
64     git pull --rebase
65     cd ..
66 fi
67 RepoSource=opencv
68 pushd Build/$RepoSource
69 CMAKE_OPTIONS='-DBUILD_PERF_TESTS:BOOL=OFF -DBUILD_TESTS:BOOL=OFF -DBUILD_DOCS:BOOL=OFF  -DWITH_CUDA:BOOL=OFF -DBUILD_EXAMPLES:BOOL=OFF -DINSTALL_CREATE_DISTRIB=ON'
70 cmake -G"$CMAKE_CONFIG_GENERATOR" $CMAKE_OPTIONS -DOPENCV_EXTRA_MODULES_PATH="$myRepo"/opencv_contrib/modules -DCMAKE_INSTALL_PREFIX="$myRepo"/install/"$RepoSource" "$myRepo/$RepoSource"
71 echo "************************* $Source_DIR -->debug"
72 cmake --build .  --config debug
73 echo "************************* $Source_DIR -->release"
74 cmake --build .  --config release
75 cmake --build .  --target install --config release
76 cmake --build .  --target install --config debug
77 popd
78 @endcode
79     In this script I suppose you use VS 2015 in 64 bits
80 @code{.bash}
81 CMAKE_CONFIG_GENERATOR="Visual Studio 14 2015 Win64"
82 @endcode
83     and opencv will be installed in c:/lib/install
84 @code{.bash}
85 -DCMAKE_INSTALL_PREFIX="$myRepo"/install/"$RepoSource" "$myRepo/$RepoSource"
86 @endcode
87     with no Perf tests, no tests, no doc, no CUDA and no example
88 @code{.bash}
89 CMAKE_OPTIONS='-DBUILD_PERF_TESTS:BOOL=OFF -DBUILD_TESTS:BOOL=OFF -DBUILD_DOCS:BOOL=OFF -DBUILD_EXAMPLES:BOOL=OFF'
90 @endcode
91 -#  In git command line enter following command :
92 @code{.bash}
93 ./installOCV.sh
94 @endcode
95 -# Drink a coffee or two... opencv is ready : That's all!
96 -# Next time you run this script, opencv and opencv_contrib will be updated and rebuild
97
98
99 Installation by Making Your Own Libraries from the Source Files {#tutorial_windows_install_build}
100 ===============================================================
101
102 You may find the content of this tutorial also inside the following videos:
103 [Part 1](https://www.youtube.com/watch?v=NnovZ1cTlMs) and [Part 2](https://www.youtube.com/watch?v=qGNWMcfWwPU), hosted on YouTube.
104
105 @youtube{NnovZ1cTlMs}
106 @youtube{qGNWMcfWwPU}
107
108 **warning**
109
110 These videos above are long-obsolete and contain inaccurate information. Be careful, since
111 solutions described in those videos are no longer supported and may even break your install.
112
113 If you are building your own libraries you can take the source files from our [Git
114 repository](https://github.com/opencv/opencv.git).
115
116 Building the OpenCV library from scratch requires a couple of tools installed beforehand:
117
118 -   An IDE of choice (preferably), or just a CC++ compiler that will actually make the binary files.
119     Here we will use the [Microsoft Visual Studio](https://www.microsoft.com/visualstudio/en-us).
120     However, you can use any other IDE that has a valid CC++ compiler.
121 -   [CMake](http://www.cmake.org/cmake/resources/software.html), which is a neat tool to make the project files (for your chosen IDE) from the OpenCV
122     source files. It will also allow an easy configuration of the OpenCV build files, in order to
123     make binary files that fits exactly to your needs.
124 -   Git to acquire the OpenCV source files. A good tool for this is [TortoiseGit](http://code.google.com/p/tortoisegit/wiki/Download). Alternatively,
125     you can just download an archived version of the source files from our [page on
126     Sourceforge](http://sourceforge.net/projects/opencvlibrary/files/opencv-win/)
127
128 OpenCV may come in multiple flavors. There is a "core" section that will work on its own.
129 Nevertheless, there is a couple of tools, libraries made by 3rd parties that offer services of which
130 the OpenCV may take advantage. These will improve its capabilities in many ways. In order to use any
131 of them, you need to download and install them on your system.
132
133 -   The [Python libraries](http://www.python.org/downloads/) are required to build the *Python interface* of OpenCV. For now use the
134     version `2.7.{x}`. This is also a must if you want to build the *OpenCV documentation*.
135 -   [Numpy](http://numpy.scipy.org/) is a scientific computing package for Python. Required for the *Python interface*.
136 -   [Intel Threading Building Blocks (*TBB*)](http://threadingbuildingblocks.org/file.php?fid=77) is used inside OpenCV for parallel code
137     snippets. Using this will make sure that the OpenCV library will take advantage of all the cores
138     you have in your system's CPU.
139 -   [Intel Integrated Performance Primitives (*IPP*)](http://software.intel.com/en-us/articles/intel-ipp/) may be used to improve the performance
140     of color conversion, Haar training and DFT functions of the OpenCV library. Watch out, since
141     this is not a free service.
142 -   OpenCV offers a somewhat fancier and more useful graphical user interface, than the default one
143     by using the [Qt framework](http://qt.nokia.com/downloads). For a quick overview of what this has to offer, look into the
144     documentations *highgui* module, under the *Qt New Functions* section. Version 4.6 or later of
145     the framework is required.
146 -   [Eigen](http://eigen.tuxfamily.org/index.php?title=Main_Page#Download) is a C++ template library for linear algebra.
147 -   The latest [CUDA Toolkit](http://developer.nvidia.com/cuda-downloads) will allow you to use the power lying inside your GPU. This will
148     drastically improve performance for some algorithms (e.g the HOG descriptor). Getting more and
149     more of our algorithms to work on the GPUs is a constant effort of the OpenCV team.
150 -   [OpenEXR](http://www.openexr.com/downloads.html) source files are required for the library to work with this high dynamic range (HDR)
151     image file format.
152 -   The OpenNI Framework contains a set of open source APIs that provide support for natural interaction with devices via methods such as voice command recognition, hand gestures, and body
153     motion tracking. Prebuilt binaries can be found [here](http://structure.io/openni). The source code of [OpenNI](https://github.com/OpenNI/OpenNI) and [OpenNI2](https://github.com/OpenNI/OpenNI2) are also available on Github.
154 -   [Doxygen](http://www.doxygen.nl) is a documentation generator and is the tool that will actually create the
155     *OpenCV documentation*.
156
157 Now we will describe the steps to follow for a full build (using all the above frameworks, tools and
158 libraries). If you do not need the support for some of these, you can just freely skip this section.
159
160 ### Building the library
161
162 -#  Make sure you have a working IDE with a valid compiler. In case of the Microsoft Visual Studio
163     just install it and make sure it starts up.
164 -#  Install [CMake](http://www.cmake.org/cmake/resources/software.html). Simply follow the wizard, no need to add it to the path. The default install
165     options are OK.
166 -#  Download and install an up-to-date version of msysgit from its [official
167     site](http://code.google.com/p/msysgit/downloads/list). There is also the portable version,
168     which you need only to unpack to get access to the console version of Git. Supposing that for
169     some of us it could be quite enough.
170 -#  Install [TortoiseGit](http://code.google.com/p/tortoisegit/wiki/Download). Choose the 32 or 64 bit version according to the type of OS you work in.
171     While installing, locate your msysgit (if it does not do that automatically). Follow the
172     wizard -- the default options are OK for the most part.
173 -#  Choose a directory in your file system, where you will download the OpenCV libraries to. I
174     recommend creating a new one that has short path and no special characters in it, for example
175     `D:/OpenCV`. For this tutorial, I will suggest you do so. If you use your own path and know, what
176     you are doing -- it is OK.
177     -#  Clone the repository to the selected directory. After clicking *Clone* button, a window will
178         appear where you can select from what repository you want to download source files
179         (<https://github.com/opencv/opencv.git>) and to what directory (`D:/OpenCV`).
180     -#  Push the OK button and be patient as the repository is quite a heavy download. It will take
181         some time depending on your Internet connection.
182
183 -#  In this section, I will cover installing the 3rd party libraries.
184     -#  Download the [Python libraries](http://www.python.org/downloads/) and install it with the default options. You will need a
185         couple other python extensions. Luckily installing all these may be automated by a nice tool
186         called [Setuptools](http://pypi.python.org/pypi/setuptools#downloads). Download and install
187         again.
188
189     -#  The easiest way to install Numpy is to just download its binaries from the [sourceforge page](http://sourceforge.net/projects/numpy/files/NumPy/).
190         Make sure your download and install
191         exactly the binary for your python version (so for version `2.7`).
192
193     -#  For the [Intel Threading Building Blocks (*TBB*)](http://threadingbuildingblocks.org/file.php?fid=77)
194         download the source files and extract
195         it inside a directory on your system. For example let there be `D:/OpenCV/dep`. For installing
196         the [Intel Integrated Performance Primitives (*IPP*)](http://software.intel.com/en-us/articles/intel-ipp/)
197         the story is the same. For
198         extracting the archives, I recommend using the [7-Zip](http://www.7-zip.org/) application.
199
200         ![](images/IntelTBB.png)
201
202     -#  In case of the [Eigen](http://eigen.tuxfamily.org/index.php?title=Main_Page#Download) library it is again a case of download and extract to the
203         `D:/OpenCV/dep` directory.
204     -#  Same as above with [OpenEXR](http://www.openexr.com/downloads.html).
205     -#  For the [OpenNI Framework](http://www.openni.org/) you need to install both the [development
206         build](http://www.openni.org/downloadfiles/opennimodules/openni-binaries/21-stable) and the
207         [PrimeSensor
208         Module](http://www.openni.org/downloadfiles/opennimodules/openni-compliant-hardware-binaries/32-stable).
209     -#  For the CUDA you need again two modules: the latest [CUDA Toolkit](http://developer.nvidia.com/cuda-downloads) and the *CUDA Tools SDK*.
210         Download and install both of them with a *complete* option by using the 32 or 64 bit setups
211         according to your OS.
212     -#  In case of the Qt framework you need to build yourself the binary files (unless you use the
213         Microsoft Visual Studio 2008 with 32 bit compiler). To do this go to the [Qt
214         Downloads](http://qt.nokia.com/downloads) page. Download the source files (not the
215         installers!!!):
216
217         ![](images/qtDownloadThisPackage.png)
218
219         Extract it into a nice and short named directory like `D:/OpenCV/dep/qt/` . Then you need to
220         build it. Start up a *Visual* *Studio* *Command* *Prompt* (*2010*) by using the start menu
221         search (or navigate through the start menu
222         All Programs --\> Microsoft Visual Studio 2010 --\> Visual Studio Tools --\> Visual Studio Command Prompt (2010)).
223
224         ![](images/visualstudiocommandprompt.jpg)
225
226         Now navigate to the extracted folder and enter inside it by using this console window. You
227         should have a folder containing files like *Install*, *Make* and so on. Use the *dir* command
228         to list files inside your current directory. Once arrived at this directory enter the
229         following command:
230         @code{.bash}
231         configure.exe -release -no-webkit -no-phonon -no-phonon-backend -no-script -no-scripttools
232                       -no-qt3support -no-multimedia -no-ltcg
233         @endcode
234         Completing this will take around 10-20 minutes. Then enter the next command that will take a
235         lot longer (can easily take even more than a full hour):
236         @code{.bash}
237         nmake
238         @endcode
239         After this set the Qt environment variables using the following command on Windows 7:
240         @code{.bash}
241         setx -m QTDIR D:/OpenCV/dep/qt/qt-everywhere-opensource-src-4.7.3
242         @endcode
243         Also, add the built binary files path to the system path by using the [PathEditor](http://www.redfernplace.com/software-projects/patheditor/). In our
244         case this is `D:/OpenCV/dep/qt/qt-everywhere-opensource-src-4.7.3/bin`.
245
246         @note
247         If you plan on doing Qt application development you can also install at this point the *Qt
248         Visual Studio Add-in*. After this you can make and build Qt applications without using the *Qt
249         Creator*. Everything is nicely integrated into Visual Studio.
250
251 -#  Now start the *CMake (cmake-gui)*. You may again enter it in the start menu search or get it
252     from the All Programs --\> CMake 2.8 --\> CMake (cmake-gui). First, select the directory for the
253     source files of the OpenCV library (1). Then, specify a directory where you will build the
254     binary files for OpenCV (2).
255
256     ![](images/CMakeSelectBin.jpg)
257
258     Press the Configure button to specify the compiler (and *IDE*) you want to use. Note that in
259     case you can choose between different compilers for making either 64 bit or 32 bit libraries.
260     Select the one you use in your application development.
261
262     ![](images/CMake_Configure_Windows.jpg)
263
264     CMake will start out and based on your system variables will try to automatically locate as many
265     packages as possible. You can modify the packages to use for the build in the WITH --\> WITH_X
266     menu points (where *X* is the package abbreviation). Here are a list of current packages you can
267     turn on or off:
268
269     ![](images/CMakeBuildWithWindowsGUI.jpg)
270
271     Select all the packages you want to use and press again the *Configure* button. For an easier
272     overview of the build options make sure the *Grouped* option under the binary directory
273     selection is turned on. For some of the packages CMake may not find all of the required files or
274     directories. In case of these, CMake will throw an error in its output window (located at the
275     bottom of the GUI) and set its field values to not found constants. For example:
276
277     ![](images/CMakePackageNotFoundWindows.jpg)
278
279     ![](images/CMakeOutputPackageNotFound.jpg)
280
281     For these you need to manually set the queried directories or files path. After this press again
282     the *Configure* button to see if the value entered by you was accepted or not. Do this until all
283     entries are good and you cannot see errors in the field/value or the output part of the GUI. Now
284     I want to emphasize an option that you will definitely love:
285     ENABLE --\> ENABLE_SOLUTION_FOLDERS. OpenCV will create many-many projects and turning this
286     option will make sure that they are categorized inside directories in the *Solution Explorer*.
287     It is a must have feature, if you ask me.
288
289     ![](images/CMakeBuildOptionsOpenCV.jpg)
290
291     Furthermore, you need to select what part of OpenCV you want to build.
292
293     -   *BUILD_DOCS* -\> It creates two projects for building the documentation of OpenCV (there
294         will be a separate project for building the HTML and the PDF files). Note that these are not
295         built together with the solution. You need to make an explicit build project command on
296         these to do so.
297     -   *BUILD_EXAMPLES* -\> OpenCV comes with many example applications from which you may learn
298         most of the libraries capabilities. This will also come handy to easily try out if OpenCV is
299         fully functional on your computer.
300     -   *BUILD_PACKAGE* -\> Prior to version 2.3 with this you could build a project that will
301         build an OpenCV installer. With this, you can easily install your OpenCV flavor on other
302         systems. For the latest source files of OpenCV, it generates a new project that simply
303         creates a zip archive with OpenCV sources.
304     -   *BUILD_SHARED_LIBS* -\> With this you can control to build DLL files (when turned on) or
305         static library files (\*.lib) otherwise.
306     -   *BUILD_TESTS* -\> Each module of OpenCV has a test project assigned to it. Building these
307         test projects is also a good way to try out, that the modules work just as expected on your
308         system too.
309     -   *BUILD_PERF_TESTS* -\> There are also performance tests for many OpenCV functions. If
310         you are concerned about performance, build them and run.
311     -   *BUILD_opencv_python* -\> Self-explanatory. Create the binaries to use OpenCV from the
312         Python language.
313     -   *BUILD_opencv_world* -\> Generate a single "opencv_world" binary (a shared or static library, depending on *BUILD_SHARED_LIBS*) including all the modules instead of a collection of separate binaries, one binary per module.
314
315     Press again the *Configure* button and ensure no errors are reported. If this is the case, you
316     can tell CMake to create the project files by pushing the *Generate* button. Go to the build
317     directory and open the created **OpenCV** solution. Depending on just how much of the above
318     options you have selected the solution may contain quite a lot of projects so be tolerant on the
319     IDE at the startup. Now you need to build both the *Release* and the *Debug* binaries. Use the
320     drop-down menu on your IDE to change to another of these after building for one of them.
321
322     ![](images/ChangeBuildVisualStudio.jpg)
323
324     In the end, you can observe the built binary files inside the bin directory:
325
326     ![](images/OpenCVBuildResultWindows.jpg)
327
328     For the documentation, you need to explicitly issue the build commands on the *doxygen* project for
329     the HTML documentation. It will call *Doxygen* to do
330     all the hard work. You can find the generated documentation inside the `build/doc/doxygen/html`.
331
332     To collect the header and the binary files, that you will use during your own projects, into a
333     separate directory (similarly to how the pre-built binaries ship) you need to explicitly build
334     the *Install* project.
335
336     ![](images/WindowsBuildInstall.png)
337
338     This will create an *Install* directory inside the *Build* one collecting all the built binaries
339     into a single place. Use this only after you built both the *Release* and *Debug* versions.
340
341     To test your build just go into the `Build/bin/Debug` or `Build/bin/Release` directory and start
342     a couple of applications like the *contours.exe*. If they run, you are done. Otherwise,
343     something definitely went awfully wrong. In this case you should contact us at our [Q&A forum](http://answers.opencv.org/).
344     If everything is okay, the *contours.exe* output should resemble the following image (if
345     built with Qt support):
346
347     ![](images/WindowsQtContoursOutput.png)
348
349 @note
350    If you use the GPU module (CUDA libraries), make sure you also upgrade to the latest drivers of
351     your GPU. Error messages containing invalid entries in (or cannot find) the nvcuda.dll are
352     caused mostly by old video card drivers. For testing the GPU (if built) run the
353     *performance_gpu.exe* sample application.
354
355 Set the OpenCV environment variable and add it to the systems path {#tutorial_windows_install_path}
356 =================================================================
357
358 First we set an environment variable to make easier our work. This will hold the build directory of
359 our OpenCV library that we use in our projects. Start up a command window and enter:
360 @code
361     setx -m OPENCV_DIR D:\OpenCV\Build\x86\vc11     (suggested for Visual Studio 2012 - 32 bit Windows)
362     setx -m OPENCV_DIR D:\OpenCV\Build\x64\vc11     (suggested for Visual Studio 2012 - 64 bit Windows)
363
364     setx -m OPENCV_DIR D:\OpenCV\Build\x86\vc12     (suggested for Visual Studio 2013 - 32 bit Windows)
365     setx -m OPENCV_DIR D:\OpenCV\Build\x64\vc12     (suggested for Visual Studio 2013 - 64 bit Windows)
366
367     setx -m OPENCV_DIR D:\OpenCV\Build\x64\vc14     (suggested for Visual Studio 2015 - 64 bit Windows)
368 @endcode
369 Here the directory is where you have your OpenCV binaries (*extracted* or *built*). You can have
370 different platform (e.g. x64 instead of x86) or compiler type, so substitute appropriate value.
371 Inside this, you should have two folders called *lib* and *bin*. The -m should be added if you wish
372 to make the settings computer wise, instead of user wise.
373
374 If you built static libraries then you are done. Otherwise, you need to add the *bin* folders path
375 to the systems path. This is because you will use the OpenCV library in form of *"Dynamic-link
376 libraries"* (also known as **DLL**). Inside these are stored all the algorithms and information the
377 OpenCV library contains. The operating system will load them only on demand, during runtime.
378 However, to do this the operating system needs to know where they are. The systems **PATH** contains
379 a list of folders where DLLs can be found. Add the OpenCV library path to this and the OS will know
380 where to look if he ever needs the OpenCV binaries. Otherwise, you will need to copy the used DLLs
381 right beside the applications executable file (*exe*) for the OS to find it, which is highly
382 unpleasant if you work on many projects. To do this start up again the [PathEditor](http://www.redfernplace.com/software-projects/patheditor/) and add the
383 following new entry (right click in the application to bring up the menu):
384 @code
385     %OPENCV_DIR%\bin
386 @endcode
387
388 ![](images/PathEditorOpenCVInsertNew.png)
389
390 ![](images/PathEditorOpenCVSetPath.png)
391
392 Save it to the registry and you are done. If you ever change the location of your build directories
393 or want to try out your application with a different build, all you will need to do is to update the
394 OPENCV_DIR variable via the *setx* command inside a command window.
395
396 Now you can continue reading the tutorials with the @ref tutorial_windows_visual_studio_opencv section.
397 There you will find out how to use the OpenCV library in your own projects with the help of the
398 Microsoft Visual Studio IDE.