程序在OpenCV上的CodeBlocks for Windows中返回错误代码-1073741515

时间:2016-01-12 07:24:27

标签: c++ opencv codeblocks mingw32

我目前正在尝试使用mingw32编译器在CodeBlocks for Windows上编写OpenCV测试应用程序。我使用CMake和mingw32成功构建了OpenCV源,没有任何错误。添加了所有库并设置了PATH环境变量。 以下是我使用的代码:

#include <iostream>
#include <conio.h>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/video/tracking.hpp>

int main()
{
    std::cout<<"Program start\n";
    getch();
    cv::Mat frame;
    return 0;
}

文件构建没有错误。但是在执行时,我收到以下消息:

&#39;流程返回-1073741515&lt; 0xC0000135&gt;&#39;

即使是第一个&#34;程序开始&#34;未在屏幕上打印

我确实参考了这篇文章:Error Code -1073741515 When Using EDITBIN但这是徒劳的。

0 个答案:

没有答案