opencv 如何给vector容器赋值
时间: 2023-10-18 11:15:06 浏览: 87
Opencv 图像数据容器类.pdf
可以使用vector的assign()函数来给容器赋值,示例代码如下:
```c++
#include <iostream>
#include <vector>
#include <opencv2/opencv.hpp>
using namespace std;
using namespace cv;
int main()
{
// 定义一个vector容器
vector<int> myvector;
// 给vector容器赋值
myvector.assign(5, 10);
// 打印vector容器中的值
for (int i = 0; i < myvector.size(); i++)
{
cout << myvector[i] << " ";
}
return 0;
}
```
输出结果为:
```c++
10 10 10 10 10
```
其中,assign()函数的第一个参数表示要赋值的元素数量,第二个参数表示要赋的值。
阅读全文