官方教程:https://wiki.qt.io/How_to_setup_Qt_and_openCV_on_Windows
軟件環境:
Qt:5.11
CMake-3.14.4
OpenCV-4.1.0
編譯配置:
- 勾選
WITH_OPENGL - 勾選
ENABLE_CXX11 - 不勾選
WITH_IPP - 不勾選
ENABLE_PRECOMPILED_HEADERS
點擊 Configure,Generate 生成 Makefile
編譯 OpenCV
打開終端進行編譯:(-j 是使用 8 個線程進行編譯,請根據你的計算機配置合理設置線程數)
mingw32-make -j 8 mingw32-make install
參考鏈接:
Tutorial: Installation from source for Windows with Mingw-w64:https://visp-doc.inria.fr/doxygen/visp-daily/tutorial-install-win10-mingw64.html
OpenCV使用CMake和MinGW-w64的編譯安裝:https://blog.csdn.net/huihut/article/details/81317102
