总算在64位Win7下VS2010里把OpenCV 2.1运行库正确地编译安装完了(附安装指南)| Finally finished building the correct OpenCV 2.1 libraries in Visual Studio 2010 under Windows 7 64bit (Install guide added)

由于Project需要用到OpenCV的库,所以折腾数周,总算搞定了,期间试了无数次,OpenCV的库每次都能在Debug和Release下全部编译成功。但自己新建的工程无论如何修改配置都会出现LNK的fatal error,股沟多次得出结论:库文件添加错误。但是对照之后发现一模一样,于是郁闷多日不得解。今日再做尝试,在CMake中选择了“Visual Studio 2010”而不是之前的“Visual Studio 2010 Win64”,generate,然后打开VS进行Rebuild,添加到自己的工程之后奇迹般的成功了。于是在此记上一笔,免得他人步上俺的后尘。末尾附上英文安装过程。

————————–Lang Sep——————————–

I’ve been trying to get OpenCV installed on my laptop for a couple of weeks. I’m in need of it because of my project. The installation needs the OpenCV source files to be compiled into libraries and then will it be used in my own C project. I’ve tried several times of compiling and all results showed me that the building was successful. However, when I use the files in my own project, Visual studio kept telling me ‘LNKXXXX fatal error’ and never build my program. I was about to despair of trying it on Win7 64bit when I gave it a last try. This time, I selected “Visual Studio 2010” in the configure rather than “Visual Studio 2010 Win64” as I previous did. The result was amazing. After the libraries were generated, I managed to build my program and run it. Here’s the process for vs2010: