Face Recognition in Videos with OpenCV3 gives Unhandled exception (opencv_core310.dll)

眉间皱痕 提交于 2019-12-01 14:45:52

I am using Windows 10 64-bit with Visual Studio 2015 and OpenCV 3.1.0 and opencv_contrib-master (Build Configuration: x64-Debug)

You're linking to release libraries, but you're in debug mode.

In debug you need to link to OpenCV libraries with the trailing "d": opencv_<module><version>d.lib.

So in your case to: opencv_core310d.lib, etc...

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!