I am trying to build A project in Visual studio 2013 which uses some additional libraries, OpenCV and other files. When I build project, it was successful but I run the created executable it halted giving some error code. So I used Windows debugger mode of Visual studio while building. and gave me following error:
'static_input.exe' (Win32): Loaded 'C:\Users\amy\Downloads\clandmark- master\clandmark\build\examples\Debug\static_input.exe'. Symbols loaded.
'static_input.exe' (Win32): Loaded 'C:\Windows\System32\ntdll.dll'. Symbols loaded.
'static_input.exe' (Win32): Loaded 'C:\Windows\System32\kernel32.dll'. Symbols loaded.
'static_input.exe' (Win32): Loaded 'C:\Windows\System32\KernelBase.dll'. Symbols loaded.
'static_input.exe' (Win32): Loaded 'C:\Windows\System32\shell32.dll'. Symbols loaded.
'static_input.exe' (Win32): Loaded 'C:\Windows\System32\msvcrt.dll'. Symbols loaded.
'static_input.exe' (Win32): Loaded 'C:\Windows\System32\shlwapi.dll'. Symbols loaded.
'static_input.exe' (Win32): Loaded 'C:\Windows\System32\gdi32.dll'. Symbols loaded.
'static_input.exe' (Win32): Loaded 'C:\Windows\System32\user32.dll'. Symbols loaded.
'static_input.exe' (Win32): Loaded 'C:\Windows\System32\lpk.dll'. Symbols loaded.
'static_input.exe' (Win32): Loaded 'C:\Windows\System32\usp10.dll'. Symbols loaded.
'static_input.exe' (Win32): Loaded 'C:\opencv\build\x86\vc12\bin\opencv_world300d.dll'. Cannot find or open the PDB file.
'static_input.exe' (Win32): Unloaded 'C:\opencv\build\x86\vc12\bin\opencv_world300d.dll'
The program '[5124] static_input.exe' has exited with code -1073741701 (0xc000007b).
Now I have checked the : Tools-> Options-> Debugging-> Symbols and select check in a box "Microsoft Symbol Servers", mark load all modules then click Load all Symbols. found in answer
When I searched about this problem
opencv_world300d.dll'. Cannot find or open the PDB file
I found a solution that PDB file for opencv_world300d.dll does not come with prepacked version and for That I need to build OpenCV from source. After a long time of searching I decided to build it by myself and I build the OpenCV from source and It was build successful. It build around 56 project.
But there is no PDB or DLL file of name opencv_world300d
There are so many libraries but not the required one. I am stuck now and unable to counter my problem. Please help!