I've followed a couple of tutorials in order to install OpenCV under windows and everything went fine. The problem is that after installation I don't have the headers that I was expecting to have under build/opencv2, such as "opencv2/highgui/highgui.hpp" and "opencv2/opencv.hpp". At this folder I only found "opencv_modules.hpp". Opening this file I see something like:
define HAVE_OPENCV_CALIB3D
define HAVE_OPENCV_CONTRIB
define HAVE_OPENCV_CORE ...
Also, the build examples are working, so I know that the libraries have been successfully build. I have lots of .ddl files at /build/bin and lots of .ddl.a at /build/lib. Why am I missing the headers? If the library is somehow build, how to compile a project that includes openCV?
I have been using OpenCV for a while but only on Linux. Now I need to compile it on windows and I'm finding everything much more complicated.