OK, I can't say what is wrong, but having spaces in include/lib paths isn't good (although it should work with quotes). Try to move include dir to somewhere like c:\opencv, then change .pro file:
INCLUDEPATH += c:/opencv/include
INCLUDEPATH += c:/opencv/include
To copy to clipboard, switch view to plain text mode
and in your sources use:
#include <opencv/cv.h>
#include <opencv/cvaux.h>
#include <opencv/highgui.h>
#include <opencv/cv.h>
#include <opencv/cvaux.h>
#include <opencv/highgui.h>
To copy to clipboard, switch view to plain text mode
It should find headers fine. At least it works for me in such way in my projects.
Bookmarks