1 | initial version |
@Karl For the linker you always have to use specify {names}.lib files, and {names} can be found from %OpenCV_Directory%\build\{x86|x64}\minGW\lib
directory. And the library search path would be the same. For example, when you go to the path above, you will see:
opencv_core243d.lib
opencv_highgui243d.lib
...
...
Any file name with 'd' suffix means they are linked at the Debug configuration of your build. You should only paste the debug .lib files in debug configuration and release .lib files in release configuration. That should do the job for you. If you still cannot do it, let me know.