unresolved external symbol error when importing libraries for OpenCV2.3 in Visual Studios 2010 Express C++

后端 未结 6 1556
自闭症患者
自闭症患者 2020-11-30 09:12

first time posting a question here to stackoverflow. Sorry if I butcher the formatting!

I am attempting to follow a basic tutorial on openCV, namely this one: http:/

6条回答
  •  粉色の甜心
    2020-11-30 09:45

    This might help with the newer version.
    For version 2.4.8, adding opencv_imgproc248.lib resolves the following linking error:

    error LNK2019: unresolved external symbol _cvRemap referenced in function _main
    error LNK2019: unresolved external symbol _cvInitUndistortMap referenced in function _main
    error LNK2019: unresolved external symbol _cvFindCornerSubPix referenced in function _main
    error LNK2019: unresolved external symbol _cvCvtColor referenced in function _main
    

提交回复
热议问题