码迷,mamicode.com
首页 > 其他好文 > 详细

实战深度学习OpenCV(二):读取并播放本地或者摄像头的视频

时间:2018-12-01 15:08:08      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:using   实战   capture   深度   div   pre   turn   本地   代码   

一.读取并播放的代码如下:

#include "pch.h"
#include <iostream>
#include <opencv2/core/core.hpp>  
#include <opencv2/highgui/highgui.hpp>
#include<opencv2/imgproc/imgproc.hpp>


using namespace cv;


int main()
{
    VideoCapture a;
    a.open("C://Users//lenovo//Desktop//geeksong.mp4");
    while (1)
    {
        Mat frame;
        a >> frame;
        imshow("读取视频", frame);
        waitKey(600);

    }
    
    return 0;
}

 二.获取摄像头里的视频,只需要将读取视频的路径改为0就可以了:

#include "pch.h"
#include <iostream>
#include <opencv2/core/core.hpp>  
#include <opencv2/highgui/highgui.hpp>
#include<opencv2/imgproc/imgproc.hpp>


using namespace cv;


int main()
{
    VideoCapture a;
    a.open(0);
    while (1)
    {
        Mat frame;
        a >> frame;
        imshow("读取视频", frame);
        waitKey(600);

    }
    
    return 0;
}

 

实战深度学习OpenCV(二):读取并播放本地或者摄像头的视频

标签:using   实战   capture   深度   div   pre   turn   本地   代码   

原文地址:https://www.cnblogs.com/geeksongs/p/10048992.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!