Reputation: 143
Here is the problem when I'm trying to debug (I already enable the Microsoft Symbol Servers)
'App1.exe' (Win32): Loaded 'D:\opencv2410\build\x86\vc12\bin\opencv_core2410d.dll'. Cannot find or open the PDB file.
'App1.exe' (Win32): Loaded 'D:\opencv2410\build\x86\vc12\bin\opencv_highgui2410d.dll'. Cannot find or open the PDB file.
The code and installation which I followed is on this website: http://docs.opencv.org/doc/tutorials/introduction/windows_visual_studio_Opencv/windows_visual_studio_Opencv.html
Any helps are appreciated!!!
Upvotes: 1
Views: 115
Reputation: 6666
This is not an error and I doubt will ever become a problem for you.
The PDB file is a Visual Studio specific file that has the debugging symbols for your project. You can ignore those messages, unless you're hoping to step into the code for those dlls with the debugger (which is doubtful, as those are system dlls).
These files are not included in the pre-built library provided on the OpenCV download page, they will however be generated when/if you build them yourself.
You can find a much better explanation on what PDB files are on this stackoverlow question.
Upvotes: 3