Post List

2014년 12월 28일 일요일

[OpenCV] 2.4.3 Video Capture Console using VS 2010 C++

아래 동영상은 OpenCV 2.4.3 을 설치한 VS 2010에서 WebCam 영상을 화면에 출력하는 예제이다.

OpenCV 2.4.6 을 VS 2008에 설치하여서 똑같이 진행해 보았는데, 정상적으로 WebCam 영상이 출력되었다.

보통 검색하면 나오는 OpenCV Video Capture 예제의 경우 OpenCV 1.0으로 된 경우가 많은데, 요즘 노트PC에 내장된 WebCam의 경우 OpenCV 2.1 이상에서만  잘 된다고 한다.


#include <opencv\cv.h>
#include <opencv\highgui.h>
using namespace cv;
int main()
{
        //create an image to store the video screen grab
        Mat image;
        //setup the video capture method using the default camera
        VideoCapture cap;
        cap.open(0);
        //create the window that will show the video feed
        namedWindow("VideoCaptureTutorial", 1);
        //create a loop to update the image with video camera image capture
        while (1)
        {
               //grad a frame from the video camers
               cap >> image;
              //show the image on the screen
               imshow("VideoCaptureTutorial", image);
               //create a 33ms delay
               waitKey(33);
        }
        return 0;
}

원문 : http://mymobilerobots.com/myblog/academic/tutorial-opencv-2-4-3-video-capture-console-using-vs-2010-c/

댓글 없음:

댓글 쓰기