您的位置:首页 > 汽车 > 时评 > 市场营销策划案例经典大全_企业网络推广分析论文_广州最新重大新闻_宁波核心关键词seo收费

市场营销策划案例经典大全_企业网络推广分析论文_广州最新重大新闻_宁波核心关键词seo收费

2024/12/28 12:48:52 来源:https://blog.csdn.net/2301_79164062/article/details/144759464  浏览:    关键词:市场营销策划案例经典大全_企业网络推广分析论文_广州最新重大新闻_宁波核心关键词seo收费
市场营销策划案例经典大全_企业网络推广分析论文_广州最新重大新闻_宁波核心关键词seo收费

VideoCapture capture(0)用来打开系统摄像头



#include<opencv2/opencv.hpp>
#include<iostream>
using namespace std;
using namespace cv;
int main(int argv, char** argc) {
    VideoCapture capture(0);
       if (!capture.isOpened()) {
           printf("0");
        }
       namedWindow("frame", WINDOW_AUTOSIZE);

       Mat frame;
       while (true) {
           bool ret = capture.read(frame);
           if (!ret)break;
           imshow("ret", frame);
           char c = waitKey(50);
           if (c == 27) {
               break;
           }
       }
       waitKey(0);
           destroyAllWindows();
}
读取摄像头



读取视频文件

获取帧数等信息

#include<opencv2/opencv.hpp>
#include<iostream>
using namespace std;
using namespace cv;
int main(int argv, char** argc) {
    //VideoCapture capture(0);
    VideoCapture capture("C:/newword/image/20.avi");
       if (!capture.isOpened()) {
           printf("0");
        }
       namedWindow("frame", WINDOW_AUTOSIZE);
       int fps = capture.get(CAP_PROP_FPS);
       int width = capture.get(CAP_PROP_FRAME_WIDTH);
       int heigh = capture.get(CAP_PROP_FRAME_HEIGHT);
       int num_of_frame = capture.get(CAP_PROP_FRAME_COUNT);
       printf("frame size(f=%d,w=%d,h=%d,m=%d)", fps, width, heigh, num_of_frame);
        

       Mat frame;
       while (true) {
           bool ret = capture.read(frame);
           if (!ret)break;
           imshow("ret", frame);
           char c = waitKey(50);
           if (c == 27) {
               break;
           }
       }
       waitKey(0);
           destroyAllWindows();
}



读取视频文件或摄像头,将读取视频的保存

#include<opencv2/opencv.hpp>
#include<iostream>
using namespace std;
using namespace cv;
int main(int argv, char** argc) {
    VideoCapture capture(0);
    //VideoCapture capture("C:/newword/image/20.avi");
       if (!capture.isOpened()) {
           printf("0");
        }
       namedWindow("frame", WINDOW_AUTOSIZE);
       int fps = capture.get(CAP_PROP_FPS);
       int width = capture.get(CAP_PROP_FRAME_WIDTH);
       int heigh = capture.get(CAP_PROP_FRAME_HEIGHT);
       int num_of_frame = capture.get(CAP_PROP_FRAME_COUNT);
       int type = capture.get(CAP_PROP_FOURCC);
       printf("frame size(f=%d,w=%d,h=%d,m=%d)", fps, width, heigh, num_of_frame);
        

       Mat frame;
       VideoWriter writer("C:/newword/image/232320.mp4", type, fps, Size(width, heigh), true);
       while (true) {
           bool ret = capture.read(frame);
           if (!ret)break;
           imshow("ret", frame);
           writer.write(frame);
           char c = waitKey(50);
           if (c == 27) {
               break;
           }
       }
       waitKey(0);
           destroyAllWindows();
}
 

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com