【发布时间】:2014-02-26 08:40:17
【问题描述】:
我尝试在 Visual Studio 2010(64 位)上安装 opencv 244。在纠正了许多丢失的 dll 问题后,我被这个问题困住了
我在输出中得到以下错误
'Panoroma_25.exe': Loaded 'C:\Users\Jango\Documents\Visual Studio 2010\Projects\projects_opencv\Panoroma_25\x64\Debug\Panoroma_25.exe', Symbols loaded.
'Panoroma_25.exe': Loaded 'C:\Windows\System32\ntdll.dll', Cannot find or open the PDB file
'Panoroma_25.exe': Loaded 'C:\Windows\System32\kernel32.dll', Cannot find or open the PDB file
'Panoroma_25.exe': Loaded 'C:\Windows\System32\KernelBase.dll', Cannot find or open the PDB file
'Panoroma_25.exe': Loaded 'C:\opencv\build\x64\vc11\bin\opencv_core244d.dll', Cannot find or open the PDB file
'Panoroma_25.exe': Loaded 'C:\Windows\System32\msvcp110d.dll', Cannot find or open the PDB file
The program '[6876] Panoroma_25.exe: Native' has exited with code -1073741701 (0xc000007b).
【问题讨论】:
-
嗯,首先,您尝试在 VC10 项目中链接 OpenCV 的 VC11 库;这是不正确的。纠正这个问题并检查项目是否有效。
-
我首先要确保图像加载成功。仅供参考,基本错误 0x7B 是错误 123,即:“文件名、目录名或卷标语法不正确。”
-
我该如何纠正它@scap3y
标签: c++ visual-studio-2010 opencv