• Home
  • Raw
  • Download

Lines Matching refs:Regression

123 Regression& Regression::instance()  in instance()
125 static Regression single; in instance()
129 Regression& Regression::add(TestBase* test, const std::string& name, cv::InputArray array, double e… in add()
135 Regression& Regression::addMoments(TestBase* test, const std::string& name, const cv::Moments& arra… in addMoments()
140 return Regression::add(test, name, m, eps, err); in addMoments()
143 Regression& Regression::addKeypoints(TestBase* test, const std::string& name, const std::vector<cv:… in addKeypoints()
153 return Regression::add(test, name + "-pt", pt, eps, ERROR_ABSOLUTE) in addKeypoints()
161 Regression& Regression::addMatches(TestBase* test, const std::string& name, const std::vector<cv::D… in addMatches()
169 return Regression::add(test, name + "-queryIdx", queryIdx, DBL_EPSILON, ERROR_ABSOLUTE) in addMatches()
175 void Regression::Init(const std::string& testSuitName, const std::string& ext) in Init()
180 void Regression::init(const std::string& testSuitName, const std::string& ext) in init()
230 Regression::Regression() : regRNG(cv::getTickCount())//this rng should be really random in Regression() function in Regression
234 Regression::~Regression() in ~Regression()
246 cv::FileStorage& Regression::write() in write()
266 std::string Regression::getCurrentTestNodeName() in getCurrentTestNodeName()
294 bool Regression::isVector(cv::InputArray a) in isVector()
300 double Regression::getElem(cv::Mat& m, int y, int x, int cn) in getElem()
315 void Regression::write(cv::Mat m) in write()
342 void Regression::verify(cv::FileNode node, cv::Mat actual, double eps, std::string argname, ERROR_T… in verify()
398 void Regression::write(cv::InputArray array) in write()
449 void Regression::verify(cv::FileNode node, cv::InputArray array, double eps, ERROR_TYPE err) in verify()
578 Regression& Regression::operator() (const std::string& name, cv::InputArray array, double eps, ERRO… in operator ()()