3
I am using Ubuntu with Opencv to develop a computer vision method, previously used in windows Opencv and put the following configuration in qtCreator to recognize Openccv.
INCLUDEPATH += "C:\OpenCV-QT\install\include"
LIBS += -L"C:\OpenCV-QT\install\x86\mingw\bin" \
libopencv_core320 \
libopencv_highgui320 \
libopencv_videoio320 \
libopencv_imgcodecs320 \
libopencv_imgproc320 \
libopencv_features2d320 \
libopencv_calib3d320
In Ubuntu I put both in the directory /home/daniel/ as in root(/), how do I put Ubuntu’s path in Qt equal to that of windows?
It worked, I had to compile Opencv for Ubuntu, and change the path.
– Daniel Santos