Can the source code of OPENCV also be debugged? (The PDB file is required.)
1. I am using QT Creator, then "Tools \ options \ debugger \ profile \ Source Path mapping", select "Add qt source", the target path is QT source code path, such as "C:\QT\QT5.7.0\5.7\SRC", the source path is the QT Creator automatically supplemented.
2. According to this method can also be VC CRT source to add, the target path is the VC CRT source path, such as "C:\Program Files (x86) \microsoft Visual Studio 12.0\vc\crt\src", The same source path is also automatically supplemented by QT creator.
3.OPENCV I installed the Windows Precompiled version 2411, to enter the OpenCV source code needs the corresponding PDB file, and only the static library to provide the PDB file, such as under C:\opencv\build\x86\vc12\staticlib, So static link OpenCV and in the debug mode, in order to enter the OpenCV source, and OpenCV dynamic link library, because there is no PDB file, so you can not enter the OPENCV source code (self-compiled OPENCV source code, to generate PDB files, Can be dynamically linked to the library can also enter the source of OpenCV, which I have not tried)
http://blog.csdn.net/cocoasprite/article/details/54706012
Can the source code of OPENCV also be debugged? (The PDB file is required.)