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

opencv std::vector<cv:Mat>

时间:2019-04-25 15:55:49      阅读:275      评论:0      收藏:0      [点我收藏+]

标签:for   share   初始化   inter   some   push   sample   int   one   

Mat is some kind of smart pointer for the pixels

Mat a=b will have shared pixels for a and b. similar situation for push_back()

if you need a ‘deep copy‘, use Mat::clone()

所以在初始化含Mat的容器时要用以下代码:

vector<cv::Mat> fims;
for (int numMat = 0; numMat < 6; numMat++) {
cv::Mat fim(m_hSample, m_wSample, CV_32FC3);
fims.push_back(fim);
}

opencv std::vector<cv:Mat>

标签:for   share   初始化   inter   some   push   sample   int   one   

原文地址:https://www.cnblogs.com/amarr/p/10768839.html

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