我正在尝试在 opencv 中读取 mat 形式的图像并显示它。代码编译得很好,但是运行时会出现运行时错误,并且不显示图像。这是我的代码:
#include "stdafx.h"
#include<cv.h>
#include<highgui.h>
#include<iostream>
using namespace cv;
using namespace std;
void main()
{
Mat Img;
Img=imread("C:/Documents and Settings/image1.jpg");
cvNamedWindow("Image",CV_WINDOW_AUTOSIZE);
imshow( "Image", Img );
cvWaitKey(0);
}
谁能告诉我我哪里出错了?