mguludag / OpenCV-4.1.0-Precompiled-Binaries

OpenCV 4.1.0 compiled with Qt 5.13 binaries using MSVC2017x86, MSVC2017x64, MinGW7.3x64 and Unix GCC x64 compilers and created help files for Qt Creator (only for MSVC17 x64 build: Added TesseractOCR)
GNU General Public License v3.0
3 stars 2 forks source link
docs-qt image-processing library opencv qt unix windows

OpenCV 4.1.0 and contrib modules compiled with Qt 5.13 binaries using MSVC2017x86, MSVC2017x64, MinGW7.3x64 and Unix GCC x64 compiler and created help files for Qt Creator

Hello, I compiled OpenCV from its source for using with Qt and Qt Creator. Everything is set up. You can simply download the repo and unzip into C:\ drive then unpack the 7z archive in the doc folder and move this folder and .qch file to Qt Docs (example: C:\Qt\Qt5.13.0\Docs\Qt-5.13.0) folder inside your Qt installation folder. Thats it!

How to use in your Qt Projects and Qt Creator?

On Windows:

After the installation completed then open your project file (.pro file) and add this line below:

 include(C:/opencv/opencv410.pri)

And Ctrl+S to save this project then its done.

On Linux:

After the installation completed then open the opencv410.pri file and find unix section then change the INCLUDEPATH and LIBS path to you extracted path for example (/home/your_username/opencv/include and /home/your_username/opencv/x64/unix_gcc/lib) then save .pri file. After this step open your project file (.pro file) and add this line below:

 include(/home/your_username/opencv/opencv410.pri)

And Ctrl+S to save this project then its done.