一度に 1 つずつ輪郭を取得できるかどうかはわかりません。ただし、 がある場合は、vector<vector<Point> >
次のように各輪郭を反復処理できます。
using namespace std;
vector<vector<Point> > contours;
// use findContours or other function to populate
for(size_t i=0; i<contours.size(); i++) {
// use contours[i] for the current contour
for(size_t j=0; j<contours[i].size(); j++) {
// use contours[i][j] for current point
}
}
// Or use an iterator
vector<vector<Point> >::iterator contour = contours.begin(); // const_iterator if you do not plan on modifying the contour
for(; contour != contours.end(); ++contour) {
// use *contour for current contour
vector<Point>::iterator point = contour->begin(); // again, use const_iterator if you do not plan on modifying the contour
for(; point != contour->end(); ++point) {
// use *point for current point
}
}
したがって、についての質問によりよく答えるためにh_next
。のイテレータ を指定it
するvector
と、次の要素は になりますit+1
。使用例:
vector<vector<Point> >::iterator contour = contours.begin();
vector<vector<Point> >::iterator next = contour+1; // behavior like h_next