diff --git a/README.md b/README.md index ef87664..f7acc44 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,17 @@ MinGW version of OpenCV compiled on Windows. -* [OpenCV 3.3.1](https://github.com/huihut/OpenCV-MinGW-Build/tree/OpenCV-3.3.1) -* OpenCV 3.4.1 +## [OpenCV 3.4.1](https://github.com/huihut/OpenCV-MinGW-Build/tree/OpenCV-3.4.1) + +``` +git clone -b OpenCV-3.4.1 git@github.com:huihut/OpenCV-MinGW-Build.git +``` + +## [OpenCV 3.3.1](https://github.com/huihut/OpenCV-MinGW-Build/tree/OpenCV-3.3.1) + +``` +git clone -b OpenCV-3.3.1 git@github.com:huihut/OpenCV-MinGW-Build.git +``` ## Compiling Environment @@ -20,12 +29,15 @@ MinGW version of OpenCV compiled on Windows. Add OpenCV library file and include path to Qt `.pro` file. -My OpenCV file is located in `E:\OpenCV-MinGW-Build`, So the configuration is as follows: +* My version of OpenCV : `OpenCV 3.3.1` +* My OpenCV path : `E:\OpenCV_3.3.1\OpenCV-MinGW-Build` + +So the configuration is as follows (**You need to modify it according to your OpenCV.**) : ``` win32 { -INCLUDEPATH += E:\OpenCV-MinGW-Build\include -LIBS += E:\OpenCV-MinGW-Build\bin\libopencv_*.dll +INCLUDEPATH += E:\OpenCV_3.3.1\OpenCV-MinGW-Build\include +LIBS += E:\OpenCV_3.3.1\OpenCV-MinGW-Build\bin\libopencv_*.dll } ``` @@ -33,8 +45,8 @@ or ``` win32 { -INCLUDEPATH += E:\OpenCV-MinGW-Build\include -LIBS += -LE:\OpenCV-MinGW-Build\bin \ +INCLUDEPATH += E:\OpenCV_3.3.1\OpenCV-MinGW-Build\include +LIBS += -LE:\OpenCV_3.3.1\OpenCV-MinGW-Build\bin \ -llibopencv_calib3d331 \ -llibopencv_core331 \ -llibopencv_dnn331 \ @@ -53,5 +65,4 @@ LIBS += -LE:\OpenCV-MinGW-Build\bin \ -llibopencv_videoio331 \ -llibopencv_videostab331 } -``` - +``` \ No newline at end of file diff --git a/bin/opencv_annotation.exe b/bin/opencv_annotation.exe new file mode 100644 index 0000000..fbd921b Binary files /dev/null and b/bin/opencv_annotation.exe differ diff --git a/bin/opencv_createsamples.exe b/bin/opencv_createsamples.exe new file mode 100644 index 0000000..030a366 Binary files /dev/null and b/bin/opencv_createsamples.exe differ diff --git a/bin/opencv_interactive-calibration.exe b/bin/opencv_interactive-calibration.exe new file mode 100644 index 0000000..f72c721 Binary files /dev/null and b/bin/opencv_interactive-calibration.exe differ diff --git a/bin/opencv_traincascade.exe b/bin/opencv_traincascade.exe new file mode 100644 index 0000000..2e97b2d Binary files /dev/null and b/bin/opencv_traincascade.exe differ diff --git a/bin/opencv_version.exe b/bin/opencv_version.exe new file mode 100644 index 0000000..b978308 Binary files /dev/null and b/bin/opencv_version.exe differ diff --git a/bin/opencv_visualisation.exe b/bin/opencv_visualisation.exe new file mode 100644 index 0000000..a022b73 Binary files /dev/null and b/bin/opencv_visualisation.exe differ