Hi There.
This may seem like an odd question but I cannot determine where the header files are located on my pc. There are gazillions of files in different folders but am not sure which one.
In my visual studio project (which works fine) the include directory is: C:\opencv 310\build\include. If lets say we view the highgui.hpp file from that folder the only code in it is:
ifdef __OPENCV_BUILD
error this is a compatibility header which should not be used inside the OpenCV library
endif
include "opencv2/highgui.hpp"
There is no reference to any source code here. According to this page (http://opencv-srf.blogspot.co.uk/2013/06/load-display-image.html)
imread() is a function declared in "opencv2/highgui/highgui.hpp" header file.
Where can I view the actual source code for these functions and why is the header file from above not contain anything?
Mark.