How to Solve 'opencv_core2411d.dll' is not found problem in Visual Studio 12? [closed]
Every time I click on debug, this error message shows up: "opencv_core2411d.dll'. Cannot find or open the PDB file."
I've- -specified environment variable -edited Linkers and C/C++ section -Copied all the dll files in system32 and systemwow32 -palced the dll files in the project folder
and still there is nothing except this error!
Is there anyone really knows how to solve this problem?
That is actually not an error at all, rather a warning... Basically it says the prebuilt downloadable packages do not contain the source code debug files (PDB files). When debugging this will result in the fact that you can only debug inside the header files but not in the actual source codes. If you need that ability of debugging, than you will need to build OpenCV yourself in debug mode and then the PDB files will be generated. :)