Searched refs:recallPrecisionCurve (Results 1 – 2 of 2) sorted by relevance
493 std::vector<Point2f>& recallPrecisionCurve ) in computeRecallPrecisionCurve() argument513 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() argument529 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() argument546 for( size_t i = 0; i < recallPrecisionCurve.size(); i++ ) in getNearestPoint()548 float curDiff = std::fabs(l_precision - recallPrecisionCurve[i].x); in getNearestPoint()
1130 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…