// // main.cpp // opencv3 // // Created by PKU on 14-9-16. // Copyright (c) 2014年 PKU. All rights reserved. // #include <opencv2/opencv.hpp> using namespace cv; using namespace std; int main() { CvCapture* capture=cvCaptureFromCAM(-1); CvVideoWriter…
几个程序使用的基本函数如下: ******************************************************************* cvCreateCameraCapture 初始化从摄像头中获取视频 CvCapture* cvCreateCameraCapture( int index ); index 要使用的摄像头索引.如果只有一个摄像头或者用哪个摄像头也无所谓,那使用参数-1便可以. 函 数cvCreateCameraCapture给从摄像头的视频流分配…