I like to write a opencv program in c++. I installed ECLIPSE IDE, Mingw-w64, cmake, opencv. I also went through Installing and using OpenCV 3.2 with Eclipse and MinGW on Windows 10 and Installation of OpenCV 3.2 for Eclipse in Windows 10. I am using windows 11. I downloaded the code to run to my computer.
I got error in opencv header file.
The two header files
#include <opencv2/core/core.hpp> #include <opencv2/highgui/highgui.hpp>
Could not reconized
error: 10:38:28 **** Incremental Build of configuration Debug for project Image **** Info: Internal Builder is used for build g++ "-IC:\opencv_src\Mingw_build\include" -O0 -g3 -Wall -c -fmessage-length=0 -o "src\Image.o" "..\src\Image.cpp" ..\src\Image.cpp:9:10: fatal error: opencv2/core/core.hpp: No such file or directory #include <opencv2/core/core.hpp> ^~~~~~~~~~~~~~~~~~~~~~~ compilation terminated.
I adding a screenshot of libraries settings
[
4
Libraries path C:\opencv_src\Mingw_build\install\x64\mingw\lib
Screenshot of the folder
opencv_src is the folder where I extracted opencv after download it. Mingw_build is the folder that I created and enter the path like that at the time of cmake
The C:\opencv_src\Mingw_build\opencv2 contains cvconfig.h and opencv_modules.hpp
I am not sure how could I add the header files of opencv so that there is no problem at time of program compilation.


