프로그래밍 언어

OPENCV 로 캠 영상 받아오는 소스

벌게진눈 2014. 1. 25. 21:03
반응형


#include "stdafx.h"

#include <opencv\cv.h>  

#include <opencv\highgui.h>


int _tmain(int argc, _TCHAR* argv[])

{

IplImage * image = 0;


CvCapture* capture = cvCaptureFromCAM(0);


cvNamedWindow( "기본 카메라", 0 );

while(1) {

cvGrabFrame( capture );

image = cvRetrieveFrame( capture );

cvShowImage("기본 카메라", image);


if( cvWaitKey(10) >= 0 )

{

break;

}

}


cvReleaseImage( &image );

cvReleaseCapture( &capture );

cvDestroyWindow("기본 카메라");


return 0;

}


비주얼 2010  으로 작성하였고 OPENCV 버전은 2.4.8 버전이다.



반응형