如何opencv读取摄像头并保存每一帧图像?
如何opencv读取摄像头并保存每一帧图像?
日期:2019-09-29 05:40:44 人气:2
#include
#include
#include
int main ()
{
CvCapture *capture=cvCreateCameraCapture(0);
cvNamedWindow("camera",CV_WINDOW_AUTOSIZE);
IplImage *image;
char file_name[15];
int i;
while(1)