#include "highgui.h"
#include "cv.h"
#include "cxcore.h"
#include "cvaux.h"
#pragma comment(lib, "highgui200.lib")
#pragma comment(lib, "cv200.lib")
#pragma comment(lib, "cxcore200.lib")
#pragma comment(lib, "cvaux200.lib")
int main(int argc , char ** argv)
{
	IplImage* img = cvLoadImage( "airplane.jpg");
	cvNamedWindow( "Example1",CV_WINDOW_AUTOSIZE);
	cvShowImage ( "Example1",img);
	cvWaitKey(0);
	cvReleaseImage(&img);
	cvDestroyWindow( "Example1");
	return 0;
}

相关文章:

  • 2021-09-07
  • 2021-11-29
  • 2021-10-13
  • 2021-08-13
  • 2021-10-11
  • 2021-07-22
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-07-18
  • 2021-06-16
  • 2021-10-14
  • 2021-07-13
  • 2022-12-23
  • 2021-11-11
相关资源
相似解决方案