Build and test on MinGW64bit OpenCV4.4 w/ QT5 (Windows10)
There is a another repository where I put some strucutred 3D stuff there: https://github.com/jmysu/Stereo3D
Config OpenCV4.4 w/ following changes:
Option | Modified OpenCV Variables |
---|---|
V | WITH_QT //With QT mouse UI |
V | WITH_OPENGL |
V | CMAKE_CXX_STANDARD_REQUIRED |
Add | CMAKE_CXX_STANDARD 11 //Fix undefined reference std:: issue |
X | OPENCV_ENABLE_ALLOCATOR_STATS //Fix error:long |
X | ENABLE_PRECOMPILED_HEADERS //Fix math.h issue |
Add | OPENCV_EXTRA_MODULES_PATH where_saved_path_of_opencv_contrib_modules |
V | WITH_OPENNI2 //for Astra Pro depth camera |
Add | OPENNI2_INCLUDE |
Add | OPENNI2_LIBRARY |
Rebuild OpenCV w/ Qt5.15.1-MinGW64bit... (remember to add openCV DLL path to system PATH)
QT5 app for loading picture w/ OpenCV4...
QT5 app for image editing w/ OpenCV4...
(from chap.02 in [Qt 5 and Open CV 4 Computer Vision Projects])
QT5 app for adjusting depth map from stereo phtos w/ OpenCV4...
(from AbsurdePhoton)
QT5 app for Orbbec Astra depth/IR camera w/ OpenNI2+OpenCV4...
- OpenCV OpenCV website
- OpenCV4.4 OpenCV Github repository w/ Opencv_contrib
- QT5.15 www.qt.io Where to download the QT5 framework
- Qt 5 and Open CV 4 Computer Vision Projects Watch YouTube clips online
- Disparity and depth maps with QT and OpenCV with support for classic image files and MPO stereo pairs AbsurdePhoton: Depth map project on Github.
- Orbbec Astra SDK stuff Orbbec SDKs(include OpenNI2 SDK).