How to Solve 'opencv_core2411d.dll' is not found problem in Visual Studio 12? [closed]

asked 2015-03-11 00:46:04 -0600

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?

edit retag flag offensive reopen merge delete

Closed for the following reason question is not relevant or outdated by sturkmen
close date 2020-10-11 09:20:07.392355

Comments

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. :)

StevenPuttemans gravatar imageStevenPuttemans ( 2015-03-11 04:24:25 -0600 )edit