Ask Your Question
0

OpenCV version 3.4 undefined reference to `cv::bgsegm::createBackgroundSubtractorMOG(int, int, double, double)'

asked 2018-02-19 00:04:41 -0600

khaleesi gravatar image

updated 2018-02-19 02:54:32 -0600

Hello everyone, The OpenCV version I'm currently using is OpenCV 3.4 .

I'm trying to compile a sample program from github. But, I'm receiving the following errors:

/tmp/cctdl0lP.o: In function `createBGSubtractorByName(cv::String const&)':
bgfg.cpp:(.text+0xfd): undefined reference to `cv::bgsegm::createBackgroundSubtractorGMG(int, double)'
bgfg.cpp:(.text+0x190): undefined reference to `cv::bgsegm::createBackgroundSubtractorCNT(int, bool, int, bool)'
bgfg.cpp:(.text+0x2b8): undefined reference to `cv::bgsegm::createBackgroundSubtractorMOG(int, int, double, double)'
collect2: error: ld returned 1 exit status

I found the similar problem referred here. And hence I included the following:

#ifdef _DEBUG                   
#pragma comment(lib, "opencv_bgsegm340d.lib") 
#else
#pragma comment(lib, "opencv_bgsegm340.lib")               
#endif

Yet, the problem doesn't seem to be solved. Kindly, help.

Thanks in advance.

edit retag flag offensive close merge delete

Comments

What is your platform ? May be I'm wrong but pragma comment(lib, is for msvc and error: ld returned 1 exit status is a link error for gcc or mingw?

LBerger gravatar imageLBerger ( 2018-02-19 02:40:02 -0600 )edit

To me it seems your simply linking the wrong libraries in your project settings.... it tells you it cannot find the corresponding function in its linked libraries.

StevenPuttemans gravatar imageStevenPuttemans ( 2018-02-19 03:08:05 -0600 )edit

I just found out that the OpenCV version that I recently installed(i.e. version 3.4.0) doesn't have opencv_bgsegm340.lib. does this mean I haven't installed OpenCV properly, or the version doesn't have it at all?

khaleesi gravatar imagekhaleesi ( 2018-02-19 03:22:26 -0600 )edit

@LBerger the platform I'm working on is g++.

khaleesi gravatar imagekhaleesi ( 2018-02-19 04:37:49 -0600 )edit

g++ lib is libopencv_bgsegm340 ? #pragma comment(lib, " is it a directive for g++?

LBerger gravatar imageLBerger ( 2018-02-19 05:01:11 -0600 )edit

@LBerger well, No. It is a library to include few background subtraction modules such as MOG and GMG. Unfortunately, when I installed the OpenCV 3.4 version, this and few other library did not get copied to the location. I had to make few changes in my Makefile to get over this problem. Anyway, Thanks for your time and help. :)

khaleesi gravatar imagekhaleesi ( 2018-02-19 22:40:47 -0600 )edit

1 answer

Sort by ยป oldest newest most voted
0

answered 2018-02-21 04:06:05 -0600

The BGSGM module is located in contrib repository because it is unstable. Therefore, you need to make sure your 3.14 version is not prebuilt (does not contain contrib modules at all) and during your build process you have to enable these contributed modules explicitly.

edit flag offensive delete link more

Comments

Thanks, @StevenPuttemans.That helped!

khaleesi gravatar imagekhaleesi ( 2018-02-21 21:36:34 -0600 )edit

Question Tools

1 follower

Stats

Asked: 2018-02-19 00:04:41 -0600

Seen: 953 times

Last updated: Feb 19 '18