I installed OpenCv via Macports and QT-Creator on my Mac. I included the header Files both to my Project
#include <opencv/cv.h>
#include <opencv/highgui.h>
Inside the .pro File and configured it like this
INCLUDEPATH += /opt/local/include/
LIBS += -L/opt/local/lib/
I am just using imgread to load an image. But if i compile i got an error like
symbol(s) not found for architecture x86_64
So it seems that my configuration is wrong in some way ? Does anybody know what i am doing wrong ? Or how do i import and install openCV inside QT under Mac OS 10.7.5 ?