Ask Your Question

Liimyd's profile - activity

2019-04-25 03:29:41 -0600 received badge  Notable Question (source)
2017-09-20 01:17:17 -0600 received badge  Popular Question (source)
2016-09-16 10:53:06 -0600 received badge  Student (source)
2015-04-24 21:25:18 -0600 commented question The library is compiled without QT support in function displayOverlay

@berak, sorry for the confusion! I had "OpenCV Error: The function/feature is not implemented" before I recompiled openCV. After recompiling OpenCV using WITH_QT = ON, I only had the linker error.

@StevenPuttemans Because of the linker errors, I haven't been able to enter runtime mode so I can't yet run cerr << cv::getBuildInformation();.

2015-04-23 23:30:05 -0600 commented question The library is compiled without QT support in function displayOverlay

I checked my CMAKE paths and I believe they were correct. This is my full compilation error:

C:/Qt/Tools/mingw491_32/bin/../lib/gcc/i686-w64-mingw32/4.9.1/../../../../i686-w64-mingw32/bin/ld.exe: C:\Programs\opencvMinGW\install\x64\mingw\staticlib\libopencv_highgui300.a(window_QT.cpp.obj): bad reloc address 0x15 in section `.text$_ZN10CvWinModelD0Ev[__ZN10CvWinModelD0Ev]'

I noticed that there was a CvWinModel class in window_QT.h but it doesn't help me much. This error is so cryptic and I've looked everywhere. I am not sure what else I can try. Any help would be really appreciated!

2015-04-23 01:42:01 -0600 received badge  Enthusiast
2015-04-21 02:31:43 -0600 asked a question The library is compiled without QT support in function displayOverlay

I am using static OpenCV 3.0 libraries with Qt 5.4. I am having compilation errors about cv::displayOverlay():

OpenCV Error: The function/feature is not implemented (The library is compiled without QT support) in displayOverlay, file C:\Programs\opencv\sources\modules\highgui\src\window.cpp, line 446
terminate called after throwing an instance of 'cv::Exception'
  what():  C:\Programs\opencv\sources\modules\highgui\src\window.cpp:446: error: (-213) The library is compiled without QT support in function displayOverlay

and

undefined reference to `_imp___ZN7QWidgetD2Ev'

Could it be that I am missing a static library? As a note, I compiled OpenCV myself and have made sure that WITH_QT was checked. I have no problems when using the dynamic libraries.

2015-03-22 02:49:38 -0600 asked a question Undefined reference to cvLog, cvCartToPolar

I'm having a few undefined reference errors trying to compile my Qt project, which uses openCV 3.0 static libraries

C:\Programs\opencvMinGW\install\x64\mingw\staticlib\libopencv_imgproc300.a(imgwarp.cpp.obj):imgwarp.cpp:(.text$cvLogPolar+0x68b): undefined reference to `cvCartToPolar'

C:\Programs\opencvMinGW\install\x64\mingw\staticlib\libopencv_imgproc300.a(imgwarp.cpp.obj):imgwarp.cpp:(.text$cvLogPolar+0x6c9): undefined reference to `cvLog'

C:/Qt/Tools/mingw491_32/bin/../lib/gcc/i686-w64-mingw32/4.9.1/../../../../i686-w64-mingw32/bin/ld.exe: C:\Programs\opencvMinGW5\install\x64\mingw\staticlib\libopencv_imgproc300.a(imgwarp.cpp.obj): bad reloc address 0x6c9 in section `.text$cvLogPolar'

Also, I'm not directly using cvLog() nor cvCartToPolar() in my program. I haven't been able to find any solutions so far on the web, so any help would be greatly appreciated!