如何在C ++中制作动态矩阵

时间:2019-07-16 06:17:15

标签: c++ image-processing matrix video-streaming dynamic-programming

int m, n//rows and cols

//caution!!! space between" > >" in "...vector<int> >"
/////////////////////////////////////////////////
vector< vector<int> > array(m, vector<int>(n,0));
using namespace cv;

Mat array;

int m,n; //rows and cols

Mat::zeros(m, n, CV_8U);

我想制作动态矩阵。 并且当图像通过时,矩阵矩阵会更大。

想象:有一个像Google Satellite这样的视频流。正在移动。 我想保留所有照片。 因此,当视频流移动时,我应该增加矩阵。

0 个答案:

没有答案