我已经开始学习OpenCV,我对c ++的了解虽然不是很差,但也不是很好。 在编写程序以查找轮廓时,我遇到了
vector<vector<Point> > contours;
有人可以解释一下这行吗? 我理解vector是某种模板和里面的东西&lt; ..&gt;应该表示存储的数据类型。 但是,我不太清楚这条线的作用。 任何帮助将非常感激。 在此先感谢:)
答案 0 :(得分:1)
It's a vector of vector of points.
Each contour is a vector (sequence) of points. Then this is a vector (sequence) of contours.