You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
vector<Point2d> pre_centers;
... // pre_centers に値を代入(push_back)
for (int i=0; i != int (pre_centers.size()); i++){
cout << i << endl; // i が無限に増える
pre_centers.pop_back();
}