To Log Everything I find useful. If you find anything inappropriate, please contact cuijinqiang@gmail.com
Thursday, June 14, 2012
WebCam in C++
#include <StdAfx.h>
#include <opencv.hpp>
using namespace cv;
int main(int, char**)
{
VideoCapture cap(0); // open the default camera
if(!cap.isOpened()) // check if we succeeded
return -1;
Mat edges;
namedWindow("edges",1);
namedWindow("original",2);
for(;;)
{
Mat frame;
cap >> frame; // get a new frame from camera
cvtColor(frame, edges, CV_BGR2GRAY);
GaussianBlur(edges, edges, Size(7,7), 1.5, 1.5);
Canny(edges, edges, 0, 30,3);
imshow("edges", edges);
imshow("original", frame);
if(waitKey(30) >= 0) break;
}
// the camera will be deinitialized automatically in VideoCapture destructor
return 0;
}
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment