Skip to content

Instantly share code, notes, and snippets.

@aanwark
Created May 31, 2017 07:52
Show Gist options
  • Save aanwark/99e2d532b9589b57ee229bee58f52aad to your computer and use it in GitHub Desktop.
Save aanwark/99e2d532b9589b57ee229bee58f52aad to your computer and use it in GitHub Desktop.
#include "opencv2/opencv.hpp"
using namespace cv;
int main(int argc, char** argv)
{
VideoCapture cap;
// open the default camera, use something different from 0 otherwise;
// Check VideoCapture documentation.
if(!cap.open(0))
return 0;
for(;;)
{
Mat frame;
cap >> frame;
if( frame.empty() ) break; // end of video stream
imshow("this is you, smile! :)", frame);
if( waitKey(1) == 27 ) break; // stop capturing by pressing ESC
}
// the camera will be closed automatically upon exit
// cap.close();
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment