I am trying to configure openCV in eclipse, in the include path I added
/usr/local/include/opencv /usr/local/include
and I used pkg-config -libs opencv to add the library to GCC C ++ Linker:
/usr/local/lib/libopencv_calib3d.so /usr/local/lib/libopencv_contrib.so ...
in the header file i included:
#include <opencv2/highgui/highgui.hpp> #include <opencv2/core/eigen.hpp>
but when i announce
using namespace cv;
I get an error: Symbol 'cv' could not be resolved
source share