Bootstrap

Debian下使用OpenCV库保存摄相头数据为图片(arm)

在《移植OpenCV3.1到BBB-Debian》一文件中配置好的环境为前提(后期不特别说明,ARM版的例子均以该环境为基础),编写使用OpenCV库保存WEBCAM的数据为图片的代码,下面是相应的源码和编译配置文件(都保存在SaveCamPic目录下):

1.源码scp.cpp

#include <stdio.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <time.h>
#include <sys/timeb.h>
#include <stdlib.h>
#include <cv.h>
#include <cxcore.h>
//#include <highgui.h>

int main( int argc,char ** argv )
{
    //声明IplImage指针
    IplImage* pFrame=NULL;
    IplImage* pSaveFrame=NULL;

    CvCapture* pCapture=NULL;

    static char filename[40];
    struct tm * tm_ptr;
    struct timeb tp;

    int p[3];
    p[0] = CV_

;