Lines Matching refs:fs
90 FileStorage fs(filename, FileStorage::READ);
91 fs["image_width"] >> calibratedImageSize.width;
92 fs["image_height"] >> calibratedImageSize.height;
93 fs["distortion_coefficients"] >> distCoeffs;
94 fs["camera_matrix"] >> cameraMatrix;
313 FileStorage fs(filename, FileStorage::READ);
314 if( !fs.isOpened() )
316 fs["box"] >> box;
318 FileNode all = fs["views"];
343 FileStorage fs(filename, FileStorage::WRITE);
344 if( !fs.isOpened() )
347 fs << "box" << "[:";
348 fs << box << "]" << "views" << "[";
359 fs << "{" << "image" << imagelist[i] <<
363 fs << "]";
372 FileStorage fs(filename, FileStorage::READ);
373 if( !fs.isOpened() )
375 FileNode n = fs.getFirstTopLevelNode();