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

后端 未结 1 1201
没有蜡笔的小新
没有蜡笔的小新 2021-01-17 01:48

Below code used to recognize face which i got from the below link

http://docs.opencv.org/3.0-beta/modules/face/doc/facerec/tutorial/facerec_video_recognition.html.

1条回答
  •  挽巷
    挽巷 (楼主)
    2021-01-17 02:09

    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_d.lib.

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

    0 讨论(0)
提交回复
热议问题