Home | History | Annotate | Download | only in cpp

Lines Matching refs:imagelist

59 StereoCalib(const vector<string>& imagelist, Size boardSize, bool useCalibrated=true, bool showRectified=true)
61 if( imagelist.size() % 2 != 0 )
76 int i, j, k, nimages = (int)imagelist.size()/2;
86 const string& filename = imagelist[i*2+k];
141 goodImageList.push_back(imagelist[i*2]);
142 goodImageList.push_back(imagelist[i*2+1]);
394 vector<string> imagelist;
395 bool ok = readStringList(imagelistfn, imagelist);
396 if(!ok || imagelist.empty())
402 StereoCalib(imagelist, boardSize, true, showRectified);