| 1 | initial version |
Some hints:
vc11 libs are for Visual Studio 2012. You should use vc10 binaries if you have. opencv_coreXYZ.lib instead of opencv_coreXYZd.lib, and so on). opencv_coreXYZ.DLL instead of opencv_coreXYZd.DLL, and so on). I hope this helps
| 2 | No.2 Revision |
Some hints:
vc11 libs are for Visual Studio 2012. You should use vc10 binaries if you have. opencv_coreXYZ.libopencv_*XYZ.lib instead of opencv_coreXYZd.libopencv_*XYZd.libopencv_coreXYZ.DLLopencv_*XYZ.lib => opencv_*XYZ.dll opencv_*XYZd.lib => opencv_*XYZd.dll. (not all of opencv_coreXYZd.DLL, I hope this helps
| 3 | No.3 Revision |
Some hints:
vc11 libs are for Visual Studio 2012. You should use vc10 binaries if you have. opencv_*XYZ.lib instead of opencv_*XYZd.lib. opencv_*XYZ.lib => opencv_*XYZ.dll , opencv_*XYZd.lib => opencv_*XYZd.dll. (not all of Opencv DLLs are needed, it depends from your code. In your example opencv_coreXYZ.dll and opencv_highguiXYZ.dll should be enough)I hope this helps