Skip to content
Advertisement

libopencv_core.so.2.4: error adding symbols: DSO missing from command line

I have installed OpenCV 3.3.0 to Ubuntu 16.04. Just want to compile this code.

JavaScript

g++ -o main gpu_thresh.cpp ‘pkg-config opencv –cflags –libs’ -lopencv_gpu -lopencv_core

g++ -L/usr/local/lib -o main gpu_thresh.cpp ‘pkg-config opencv –cflags –libs’ -lopencv_gpu -lopencv_core

I tried to compile it with these ways but still giving same warning and error.

/usr/bin/ld: warning: libopencv_core.so.2.4, needed by /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/libopencv_gpu.so, may conflict with libopencv_core.so.3.3 /usr/bin/ld: /tmp/ccdhLGL0.o: undefined reference to symbol ‘_ZN2cv3gpu6GpuMat7releaseEv’ //usr/lib/x86_64-linux-gnu/libopencv_core.so.2.4: error adding symbols: DSO missing from command line collect2: error: ld returned 1 exit status

What should I do?

Advertisement

Answer

There’s no opencv2/gpu/gpu.hpp in OpenCV 3.3. If your code compiles then it means that you’ve both OpenCV 2.4 and 3.3 on your machine.

In OpenCV 3.3, include:

JavaScript

and then use

JavaScript

See details here.

Edit: I just noticed your compilation method. When using pkg-config opencv --cflags --libs, you don’t need to manually add the libopencv files anymore.

Just do: g++ -o main gpu_thresh.cpp 'pkg-config opencv --cflags --libs'

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement