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

后端 未结 6 1568
自闭症患者
自闭症患者 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 10:07

    If you DID explicitly set up linking with all the necessary libraries, but linking errors still show, you might be mixing up 64/32 bit libraries and application.

    I.e. make sure that all library includes point to 32 bit version of libraries if you are building 32 bit application.

提交回复
热议问题