-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcapture.cpp~
More file actions
45 lines (34 loc) · 894 Bytes
/
capture.cpp~
File metadata and controls
45 lines (34 loc) · 894 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/*
*
* Example by Sam Siewert
*
*/
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <iostream>
#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
using namespace cv;
using namespace std;
#define HRES 640
#define VRES 480
int main( int argc, char** argv )
{
cvNamedWindow("Capture Example", CV_WINDOW_AUTOSIZE);
CvCapture* capture = cvCreateCameraCapture(0);
IplImage* frame;
cvSetCaptureProperty(capture, CV_CAP_PROP_FRAME_WIDTH, HRES);
cvSetCaptureProperty(capture, CV_CAP_PROP_FRAME_HEIGHT, VRES);
while(1)
{
frame=cvQueryFrame(capture);
if(!frame) break;
cvShowImage("Capture Example", frame);
char c = cvWaitKey(33);
if( c == 27 ) break;
}
cvSaveImage("picture1.jpg", frame);
cvReleaseCapture(&capture);
cvDestroyWindow("Capture Example");
};