Hello Im trying to use OpenCV 3.0 with Visual Studio 2015 Enterprise but for some reason it is not working, what am I doing wrong ?
First of all I have OpenCV extracted in C:\opencv\ with 7z archive
- In Visual Studio Project -> TestProject Properties
Configuration -> All Configuration && Platform -> All Platform
- Configuration Properties -> VC++ Directory -> Include Directories => C:\opencv\opencv\build\include
- Configuration Properties -> VC++ Directory -> Library Directories => C:\opencv\opencv\build\x86\vc12\lib
- Configuration Properties -> C/C++ -> General -> Additional Include Libraries => C:\opencv\opencv\build\include
- Configuration Properties -> Linker -> General -> Additional Library Directories => C:\opencv\opencv\build\x86\vc12\bin
Configuration -> Debug && Platform -> All Platform
- Configuration Properties -> Linker -> Input -> Additional Dependencies =>
opencv_ts300d.lib
opencv_world300d.lib
Configuration -> Release && Platform -> All Platform
- Configuration Properties -> Linker -> Input -> Additional Dependencies =>
opencv_ts300.lib
opencv_world300.lib
Now when I run a sample code I get MSVCP120D.dll is missing and MSVCR120D.dll is missing and cannot open input file 'kernel32.lib' errors. Does anyone had the same problem or know a solution ?