Home | History | Annotate | Download | only in cpp

Lines Matching full:capture

42     CvCapture* capture = 0;
107 capture = cvCaptureFromCAM( inputName.empty() ? 0 : inputName.c_str()[0] - '0' );
109 if(!capture) cout << "Capture from CAM " << c << " didn't work" << endl;
113 capture = cvCaptureFromAVI( inputName.c_str() );
114 if(!capture) cout << "Capture from AVI didn't work" << endl;
119 if( capture )
121 cout << "In capture ..." << endl;
126 IplImage* iplImg = cvQueryFrame( capture );
144 cvReleaseCapture( &capture );
148 cerr << "ERROR: Could not initiate capture" << endl;