QtOpenCVViewerGl
QtOpenCVViewerGl copied to clipboard
Linux build failed. Missing library
Hi the build under Ubuntu 16.04 failed with this .pro file.
/usr/bin/ld: cqtopencvviewergl.o: undefined reference to symbol '_ZN2cv8cvtColorERKNS_11_InputArrayERKNS_12_OutputArrayEii' //usr/lib/x86_64-linux-gnu/libopencv_imgproc.so.2.4: error adding symbols: DSO missing from command
You have to add the opencv_imgproc library.
LIBS +=
-L$$LIBS_PATH
-lopencv_imgproc
-lopencv_highgui
-lopencv_core
}
nice~