opencv学习- - -播放视频

#include <opencv2\opencv.hpp>  
using namespace cv;  

int main( )  
{  
    //【1】读入视频
    VideoCapture capture("1.avi");

    //【2】循环显示每一帧
    while(1)  
    {  
        Mat frame;//定义一个Mat变量,用于存储每一帧的图像
        capture>>frame;  //读取当前帧
        imshow("读取视频",frame);  //显示当前帧
        waitKey(30);  //延时30ms
    }  
    return 0;     
}  
View Code

 

posted on 2016-05-22 15:58  29850706  阅读(138)  评论(0编辑  收藏  举报

导航