I'm trying to install OpenCV on Windows. Following are how I installed it:
- Download OpenCV 2.4.2.exe from sourceforge.
- unarchived it.
- open Eclipse CDT.
- Add C:/opencv/include/opencv to "Includes"
- Add opencv_highgui, opencv_core, opencv_ml... to "Libraries"
- Create a small project and compiled it.
- The compiler complained about "opencv2/core/core_c.h:No such file or directory"...
I remember that when I install OpenCV on Ubuntu, I did compiled the project (it took quite a bit of time). Do I have to do the same thing on Windows? Or is any other thing causing this error?
Thanks.