我正在使用这段代码:
#include <stdlib.h>
#include <stdio.h>
#include <math.h>
#include <cv.h>
#include <highgui.h>
#include <cxcore.h>
#include <cxtypes.h>
int main(int argc, char* argv[])
{
IplImage* img = cvLoadImage( "dow2oc8.png" );
cvNamedWindow( "Example1", CV_WINDOW_AUTOSIZE );
cvShowImage("Example1", img);
cvWaitKey(0);
cvReleaseImage( &img );
cvDestroyWindow( "Example1" );
return 0;
}
我拿出了英镑标志和carrets,我无法让它读取图像文件,我已将文件添加到项目中。接下来我该怎么做