Home | History | Annotate | Download | only in test

Lines Matching full:errname

374     void writeErrors( const string& errName, const vector<float>& errors, FileStorage* fs = 0 );
375 void readErrors( FileNode& fn, const string& errName, vector<float>& errors );
377 const vector<float>& eps, const string& errName );
634 void CV_StereoMatchingTest::writeErrors( const string& errName, const vector<float>& errors, FileStorage* fs )
640 *fs << ERROR_PREFIXES[i] + errName << *it;
643 ts->printf( cvtest::TS::LOG, "%s = %f\n", string(ERROR_PREFIXES[i]+errName).c_str(), *it );
646 void CV_StereoMatchingTest::readErrors( FileNode& fn, const string& errName, vector<float>& errors )
651 fn[ERROR_PREFIXES[i]+errName] >> *it;
655 const vector<float>& eps, const string& errName )
667 ts->printf( cvtest::TS::LOG, "bad accuracy of %s (valid=%f; calc=%f)\n", string(ERROR_PREFIXES[i]+errName).c_str(), *validIt, *calcIt );