- 论坛徽章:
- 0
|
- #include "cv.h"
- #include "highgui.h"
- #include <stdio.h>
- // A Simple Camera Capture Framework
- int main() {
- CvCapture* capture = cvCaptureFromCAM( CV_CAP_ANY );// 这里可以使用 cvCreateCameraCapture
- if ( !capture ) {
- fprintf( stderr, "ERROR: capture is NULL \n" );
- getchar();
- return -1;
- }
- // Create a window in which the captured images will be presented
- cvNamedWindow( "mywindow", CV_WINDOW_AUTOSIZE );
- // Show the image captured from the camera in the window and repeat
- while ( 1 ) {
- // Get one frame
- IplImage* frame = cvQueryFrame( capture ); //取出一帧
- if ( !frame ) {
- fprintf( stderr, "ERROR: frame is null...\n" );
- getchar();
- break;
- }
- cvShowImage( "mywindow", frame ); //把这阵显示在窗口上。
- // Do not release the frame!
- //If ESC key pressed, Key=0x10001B under OpenCV 0.9.7(linux version),
- //remove higher bits using AND operator
- if ( (cvWaitKey(10) & 255) == 27 ) break;
- }
- // Release the capture device housekeeping
- cvReleaseCapture( &capture );
- cvDestroyWindow( "mywindow" );
- return 0;
- }
复制代码 摘自:http://opencv.willowgarage.com/wiki/CameraCapture
参考:http://www.opencv.org.cn/index.p ... 9%E5%87%BD%E6%95%B0 |
|