Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fasttrackorg/windows_mingw_64_opencv
https://github.com/fasttrackorg/windows_mingw_64_opencv
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/fasttrackorg/windows_mingw_64_opencv
- Owner: FastTrackOrg
- Created: 2022-02-01T18:46:44.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2024-10-11T13:22:42.000Z (4 months ago)
- Last Synced: 2024-11-06T12:13:04.812Z (3 months ago)
- Size: 7.81 KB
- Stars: 2
- Watchers: 0
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Windows_MinGW_64_OpenCV
This repository contains pre-built binaries of OpenCV compiled using MinGW_64.
Compilation steps from released sources:
```
cmake -DWITH_OPENMP=ON -DWITH_OPENCL=ON -DWITH_OPENGL=ON -DWITH_TBB=ON -DWITH_VULKAN=ON -DWITH_QT=OFF -DBUILD_WITH_DEBUG_INFO=OFF -DBUILD_TESTS=OFF -DBUILD_PERF_TESTS=OFF -DBUILD_EXAMPLES=ON -DBUILD_PROTOBUF=OFF -DPROTOBUF_UPDATE_FILES=ON -DINSTALL_C_EXAMPLES=ON -DINSTALL_PYTHON_EXAMPLES=ON -DCPU_BASELINE_DISABLE=SSE3 -DCPU_BASELINE_REQUIRE=SSE2 -DOPENCV_SKIP_PYTHON_LOADER=ON -DOPENCV_ENABLE_NONFREE=ON -DBUILD_opencv_world=ON -G "MinGW Makefiles" -DCMAKE_CXX_COMPILER=g++ ..\sources\
cmake --build . --config Release
```