0
我是非常新的開放式簡歷。我想顯示一張圖片。這是我的代碼:打開簡歷:IplImage未定義
#include "stdafx.h"
#include <cv.h>
#include <cvaux.h>
#include <highgui.h>
int main(int argc, char** argv) {
IplImage* img = cvLoadImage("C:\Users\Cagin\Desktop\New.jpg");
cvNamedWindow(「Example1」, CV_WINDOW_AUTOSIZE);
cvShowImage(「Example1」, img);
cvWaitKey(0);
cvReleaseImage(&img);
cvDestroyWindow(「Example1」);
}
這就像不承認開放的CV lib。你可以看到我的解決方案如下窗口:
正如我所說的,我在公開的簡歷很新了。我的錯誤在哪裏?