<terminated>在opencv eclipse中的xyz debug [c / c application] </terminated>

时间:2013-02-14 05:43:23

标签: c opencv eclipse-cdt

我在windows 7中使用eclipse与opencv 2.1和MinGW。我正在尝试显示图像,我成功构建代码但是当我尝试运行xyz.exe时它显示xyz debug [c / c ++ application] 。我在下面发布了我的代码

#include <stdio.h>
#include <cv.h>
#include <highgui.h>



int main( int argc, char** argv )
{
 IplImage* img = cvLoadImage("Koala.jpg");
 if (!img)
     printf("Image can NOT Load!!!\n");
 cvNamedWindow("Example",CV_WINDOW_AUTOSIZE);
 cvShowImage("Example", img);
 cvWaitKey(0);
 cvReleaseImage(&img);
 cvDestroyWindow("Example");


return 0;

}

当我运行xyz.exe时,它没有显示图像,甚至没有显示空白窗口。图像有效且位于同一文件夹中。

任何建议都表示赞赏。

0 个答案:

没有答案