vector<vector<Point> > contours;
时间: 2023-11-14 10:06:24 浏览: 99
This line declares a 2D vector named "contours", where each element of the vector is itself a vector of points. This data structure is commonly used in computer vision and image processing to store the contours or boundaries of objects detected in an image. The outer vector can store multiple contours, while the inner vector contains the set of points that make up each individual contour.
相关问题
vector<vector<Point>> contours; vector<Vec4i> hierarchy;定义不完整
这段代码定义了两个变量contours和hierarchy,它们的数据类型分别是vector<vector<Point>>和vector<Vec4i>。
vector<vector<Point>>是一个二维向量,其中每个元素是一个Point类型的向量。通常用来存储轮廓点的坐标信息。
vector<Vec4i>是一个一维向量,其中每个元素是一个四维整型向量。通常用来存储轮廓之间的关系,如轮廓的父子关系等。
但是,这段代码定义的时候缺少了变量名,所以代码是不完整的。正确的定义应该是类似于这样的:
```
vector<vector<Point>> contours;
vector<Vec4i> hierarchy;
```
其中,contours和hierarchy是变量名,可以根据实际需要自行命名。
vector<vector<Point>> contours;
vector<vector<Point>> contours是一个定义为"vector<vector<Point>>"的变量,它是一个双重向量,内部包含多个vector<Point>,每个vector<Point>代表一组点的集合。 这里的Point是一个数据类型,可能是表示一个二维平面上的点的结构体或类。 Vec4i是一个typedef,定义为Vec<int, 4>,表示一个包含4个整数的向量。 您提到的STL是指标准模板库(Standard Template Library),它是C++的一个库,提供了许多数据结构和算法的模板类,其中包括vector这样的动态数组。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* *2* [findContours函数参数详解](https://blog.csdn.net/weixin_30822451/article/details/95620081)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v92^chatsearchT0_1"}}] [.reference_item style="max-width: 50%"]
- *3* [编程小问题](https://blog.csdn.net/whhit111/article/details/46401135)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v92^chatsearchT0_1"}}] [.reference_item style="max-width: 50%"]
[ .reference_list ]
阅读全文