Home
last modified time | relevance | path

Searched refs:recallPrecisionCurve (Results 1 – 2 of 2) sorted by relevance

/external/opencv3/modules/features2d/src/
Devaluation.cpp493 std::vector<Point2f>& recallPrecisionCurve ) in computeRecallPrecisionCurve() argument
513 recallPrecisionCurve.resize( allMatches.size() ); in computeRecallPrecisionCurve()
523 recallPrecisionCurve[i] = Point2f(1-p, r); in computeRecallPrecisionCurve()
527 float cv::getRecall( const std::vector<Point2f>& recallPrecisionCurve, float l_precision ) in getRecall() argument
529 int nearestPointIndex = getNearestPoint( recallPrecisionCurve, l_precision ); in getRecall()
534 recall = recallPrecisionCurve[nearestPointIndex].y; in getRecall()
539 int cv::getNearestPoint( const std::vector<Point2f>& recallPrecisionCurve, float l_precision ) in getNearestPoint() argument
546 for( size_t i = 0; i < recallPrecisionCurve.size(); i++ ) in getNearestPoint()
548 float curDiff = std::fabs(l_precision - recallPrecisionCurve[i].x); in getNearestPoint()
/external/opencv3/modules/features2d/include/opencv2/
Dfeatures2d.hpp1130 std::vector<Point2f>& recallPrecisionCurve );
1132 CV_EXPORTS float getRecall( const std::vector<Point2f>& recallPrecisionCurve, float l_precision );
1133 CV_EXPORTS int getNearestPoint( const std::vector<Point2f>& recallPrecisionCurve, float l_precision…