[OpenCV]카메라 영상 출력

OpenCV/example 2013. 4. 4. 20:14

카메라 영상 출력하기

#include <opencv2/highgui/highgui.hpp>

#include <opencv2/imgproc/imgproc.hpp>

#include <iostream>


using namespace std;

using namespace cv;


int main()

{

VideoCapture camera(CV_CAP_ANY);

if(!camera.isOpened())

return -1;

Mat result;


namedWindow("frame", CV_WINDOW_AUTOSIZE);

for(;;)

{

Mat frame;

camera >> frame; //get a new frame from camera.

result=frame.clone();

imwrite("camera.jpg",result);

imshow("frame", result);

if(waitKey(30) >= 0) break;

}

return 0;

}


반응형