标签:log 读取 open turn blog return while opencv key
示例代码:
#include <opencv.hpp> using namespace cv; int main() { VideoCapture Capture(0); //打开默认摄像头0,即电脑摄像头 while(1) { Mat temp; Capture >> temp; // 获取每一帧 imshow("显示",temp); // 显示每一帧 waitKey(30); // 等待 可以控制速度 } return 0; }
标签:log 读取 open turn blog return while opencv key
原文地址:http://www.cnblogs.com/whlook/p/6476849.html