How to debug an external library (OpenCV) in Visual C++?

后端 未结 3 1264
情深已故
情深已故 2020-12-31 20:34

I am developing a project in VC++2008. The project uses the OpenCV library (but I guess this applies to any other library). I am working with the Debug configuration, the li

3条回答
  •  半阙折子戏
    2020-12-31 21:12

    i got the same problems, which is:

    'ccisample.exe': Loaded 'C:\OpenCV2.1\bin\cv210d.dll'

    'ccisample.exe': Loaded 'C:\OpenCV2.1\bin\cxcore210d.dll'

    I solved it by:

    Linker -> Input -> Additional Dependencies add: 'cv210.lib; cxcore210.lib; highgui210.lib;'

    instead of adding : 'cv210d.lib; cxcore210d.lib; highgui210d.lib;'

提交回复
热议问题