c ++如何将视频序列放入OpenCV中的vector<Mat>?
Posted
技术标签:
【中文标题】c ++如何将视频序列放入OpenCV中的vector<Mat>?【英文标题】:c++ How to put the video sequence into a vector<Mat> in OpenCV? 【发布时间】:2014-03-12 08:23:49 【问题描述】:我是 C++ 的新手。我读了一个视频,我想将视频的图像序列保存到一个称为矢量帧的矢量中。以下是我的代码,如果有人可以帮我更正一下,非常感谢!
#include <cv.h>
#include <highgui.h>
#include <iostream>
#include <vector>
using namespace std;
using namespace cv;
int main()
VideoCapture capture("/home/P1030.MOV");
int totalFrameNumber = capture.get(CV_CAP_PROP_FRAME_COUNT);
vector<Mat> frame;
namedWindow("Display", WINDOW_AUTOSIZE);
for(int i=0; i < totalFrameNumber; i++)
frame.push_back(Mat());
imshow("Display", frame);
return 0;
【问题讨论】:
【参考方案1】:您可以按照以下方式进行操作,但不建议一次将整个视频加载到内存中。
int main()
VideoCapture capture("/home/P1030.MOV");
int totalFrameNumber = capture.get(CV_CAP_PROP_FRAME_COUNT);
Mat currentFrame;
vector<Mat> frames;
namedWindow("Display", WINDOW_AUTOSIZE);
for(int i=0; i < totalFrameNumber; i++)
capture>>currentFrame;
frames.push_back(currentFrame.clone());
imshow("Display", currentFrame);
waitKey(10);
return 0;
【讨论】:
谢谢。它编译正确,但运行后出现错误:OpenCV Error: Assertion failed (0以上是关于c ++如何将视频序列放入OpenCV中的vector<Mat>?的主要内容,如果未能解决你的问题,请参考以下文章