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 grabMat image;//setup the video capture method using the default cameraVideoCapture cap;cap.open(0);//create the window that will show the video feednamedWindow("VideoCaptureTutorial", 1);//create a loop to update the image with video camera image capturewhile (1){//grad a frame from the video camerscap >> image;//show the image on the screenimshow("VideoCaptureTutorial", image);//create a 33ms delaywaitKey(33);}return 0;}
원문 : http://mymobilerobots.com/myblog/academic/tutorial-opencv-2-4-3-video-capture-console-using-vs-2010-c/
댓글 없음:
댓글 쓰기