user3262441
user3262441

Reputation: 3

Cannot find or open the PDB file while executing face recognition

The below is my program...is this problem because of error in program...i am using Visual studio 2010 and ts linked with openCV...but while executing "Cannot find or open the PDB file" for many lines..what is the solution for this..

Upvotes: 0

Views: 132

Answers (2)

Patrick Hofman
Patrick Hofman

Reputation: 156978

Like berak said: don't worry about it. It's the same as all the System libraries, you can't look in to them but that's okay as long as it works.

When you need to check some code inside opencv, download the source code using Git. Open the project file and compile. Then include the output as library in your project. Then you will see the source code when hitting an Exception.

Upvotes: 2

berak
berak

Reputation: 39796

no fear, that's a warning, not an error, you're safe to ignore it.

yes, those pdb files are not supplied with the prebuild binaries, meaning - you still can debug your code, but you can't dive into the opencv libs while debugging.

if you really need this feature, you'll have to rebuild opencv locally ( build a sln for your box/env using cmake, then compile that sln ) , which will produce those pdb files as well.

Upvotes: 3

Related Questions