c++ stl list
void drawPoint()
{
list<cv::Point>::iterator iter1 = list_p.begin();
for (;iter1 != list_p.end();++iter1)
{
cv::Point point_index = *iter1;
circle(frame, point_index, 2, Scalar(0, 0, 255), 2, 8, 0);
}
}
c++ stl list
void drawPoint()
{
list<cv::Point>::iterator iter1 = list_p.begin();
for (;iter1 != list_p.end();++iter1)
{
cv::Point point_index = *iter1;
circle(frame, point_index, 2, Scalar(0, 0, 255), 2, 8, 0);
}
}
stl list
c++之STL list接口介绍
举报文章
请选择举报类型
补充说明
0/200
上传截图
格式支持JPEG/PNG/JPG,图片不超过1.9M