我在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时,它没有显示图像,甚至没有显示空白窗口。图像有效且位于同一文件夹中。
任何建议都表示赞赏。