0

I try to build the OpenCV libraries with visual studio 2012 but I always get the following Error:

LINK : fatal error LNK1104: cannot open file "....\lib\Debug\opencv_core249d.lib".

I downloaded the latest code from the git repository and used Cmake 2.8.10.2 to create the projects. I also disabled the cuda support due to the cuda 5.0 and visual 2012 incompatibility.

4

2 回答 2

1

由于 OpenCV 2.43 不适用于 Visual Studio 2012。所以我写了一个简单的教程。

http://answers.opencv.org/question/6495/visual-studio-2012-and-rtlfreeheap-error/#6603

但是你的 OpenCV 版本是 2.49。我不确定这是否可行。你还是可以试试的。祝你好运。

于 2013-01-29T19:31:29.387 回答
0

我遇到了同样的问题(在 Visual Studio 2008 中)。问题是我包含了一个 ; (分号)在我所有的附加依赖项(opencv_core249d.lib opencv_imgproc249d.lib 等....)之间。当我删除分号时,它起作用了。

于 2014-07-05T18:23:40.017 回答