2013-06-24 24 views
0

我正在为我的论文尝试OpenCV库。我已经应用了http://opencv-srf.blogspot.com/2013/05/installing-configuring-opencv-with-vs.html给出的步骤我的问题是,成功构建后,我真的认为代码应该正常运行。请告诉我这个问题。谢谢:)编译器错误:程序'[10216] ConsoleApplication1.exe'已退出,代码为-1073741701(0xc000007b)

代码:

#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> ------构建开始:项目:ConsoleApplication1,配置:调试的Win32 ------ 1> ConsoleApplication1.cpp 1> ConsoleApplication1.vcxproj - > D:\ Visual Studio \ Projects \ Project2 \ new \ ConsoleApplication1 \ Debug \ ConsoleApplication1.exe ==========构建:1成功,0失败,0最多日期,0跳过==========

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

+0

链接的文章强烈建议您通过讨论如何设置x86版本的OpenCV来获得此权利。无论如何,看起来你有这个错误。 –

回答

1

NTSTATUS0xC000007B的代码是STATUS_INVALID_IMAGE_FORMAT。很可能你的程序是32位,并且正在尝试加载64个DLL。鉴于你提到OpenCV,我怀疑这是OpenCV DLL的根源。

解决方案:

  1. 确保您的处理找到的DLL的32个版本。
  2. 将您的项目切换到目标64位。
相关问题