Skip to content

Instantly share code, notes, and snippets.

@agtbaskara
Created August 11, 2018 17:51
Show Gist options
  • Save agtbaskara/ff6b85ddf40f9cf9d945b7a14f0bdc00 to your computer and use it in GitHub Desktop.
Save agtbaskara/ff6b85ddf40f9cf9d945b7a14f0bdc00 to your computer and use it in GitHub Desktop.
Notes of how to build C++ program with OpenCV using Mingw-w64 g++
OpenCV Mingw-w64 Build:
git clone https://github.com/huihut/OpenCV-MinGW-Build.git -b OpenCV-3.4.1-x64
To Build Using CMD:
g++ test.cpp -IC:\OpenCV-MinGW-Build\include -LC:\OpenCV-MinGW-Build\x64\mingw\bin -llibopencv_calib3d341 -llibopencv_core341 -llibopencv_dnn341 -llibopencv_features2d341 -llibopencv_flann341 -llibopencv_highgui341 -llibopencv_imgcodecs341 -llibopencv_imgproc341 -llibopencv_ml341 -llibopencv_objdetect341 -llibopencv_photo341 -llibopencv_shape341 -llibopencv_stitching341 -llibopencv_superres341 -llibopencv_video341 -llibopencv_videoio341 -llibopencv_videostab341
Visual Studio Code edit Code Runner in"code-runner.executorMap":
"cpp": "cd $dir && g++ $fileName -o $fileNameWithoutExt -IC:/OpenCV-MinGW-Build/include -LC:/OpenCV-MinGW-Build/x64/mingw/bin -llibopencv_calib3d341 -llibopencv_core341 -llibopencv_dnn341 -llibopencv_features2d341 -llibopencv_flann341 -llibopencv_highgui341 -llibopencv_imgcodecs341 -llibopencv_imgproc341 -llibopencv_ml341 -llibopencv_objdetect341 -llibopencv_photo341 -llibopencv_shape341 -llibopencv_stitching341 -llibopencv_superres341 -llibopencv_video341 -llibopencv_videoio341 -llibopencv_videostab341 && $dir$fileNameWithoutExt",
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment