编译错误:程序'[10216] ConsoleApplication1.exe'已退出,代码为-1073741701(0xc000007b)

时间:2013-06-24 10:11:22

标签: debugging visual-studio-2012 compiler-errors

我正在为我的论文尝试OpenCV库。我已经应用了http://opencv-srf.blogspot.com/2013/05/installing-configuring-opencv-with-vs.html给出的步骤我的问题是在成功构建之后我真的认为代码应该正常运行。请告诉我这个问题。谢谢:))

代码:

#include "stdafx.h"
#include "opencv2/highgui/highgui.hpp"
#include <iostream>

using namespace cv;
using namespace std;

int main( int argc, const char** argv )
{
     Mat img(500, 1000, CV_8UC3, Scalar(0,0, 100)); //create an image ( 3 channels, 8 bit image depth, 500 high, 1000 wide, (0, 0, 100) assigned for Blue, Green and Red plane respectively. )

     if (img.empty()) //check whether the image is loaded or not
     {
          cout << "Error : Image cannot be loaded..!!" << endl;
          //system("pause"); //wait for a key press
          return -1; 
     } 

     namedWindow("MyWindow", CV_WINDOW_AUTOSIZE); //create a window with the name "MyWindow"
     imshow("MyWindow", img); //display the image which is stored in the 'img' in the "MyWindow" window

     waitKey(0);  //wait infinite time for a keypress

     destroyWindow("MyWindow"); //destroy the window with the name, "MyWindow"

     return 0;
}

生成: 1&gt; ------ Build build:Project:ConsoleApplication1,Configuration:Debug Win32 ------ 1 GT; ConsoleApplication1.cpp 1 GT; ConsoleApplication1.vcxproj - &gt; D:\ Visual Studio \ Projects \ Project2 \ new \ ConsoleApplication1 \ Debug \ ConsoleApplication1.exe ==========构建:1成功,0失败,0最新,0跳过==========

调试: &#39; ConsoleApplication1.exe中&#39; (Win32):已加载&#39; D:\ Visual Studio \ Projects \ Project2 \ new \ ConsoleApplication1 \ Debug \ ConsoleApplication1.exe&#39;。符号已加载。 &#39; ConsoleApplication1.exe中&#39; (Win32):已加载&#39; C:\ Windows \ SysWOW64 \ ntdll.dll&#39;。符号已加载。 &#39; ConsoleApplication1.exe中&#39; (Win32):已加载&#39; C:\ Windows \ SysWOW64 \ kernel32.dll&#39;。符号已加载。 &#39; ConsoleApplication1.exe中&#39; (Win32):已加载&#39; C:\ Windows \ SysWOW64 \ KernelBase.dll&#39;。符号已加载。 该程序&#39; [4136] ConsoleApplication1.exe&#39;已退出代码-1073741701(0xc000007b)。

1 个答案:

答案 0 :(得分:1)

0xC000007B的{​​{1}}代码为STATUS_INVALID_IMAGE_FORMAT。您的程序很可能是32位,并且正在尝试加载64个DLL。鉴于你提到OpenCV,我怀疑它是OpenCV DLL的根源。

解决方案:

  1. 确保您的进程找到32位版本的DLL。
  2. 将项目切换为目标64位。