私はこのコードを使用しています:
#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;
}
ポンド記号とキャレットを取り出しましたが、画像ファイルを読み取れません。プロジェクトにファイルを追加しました。次に何をすべきか