Searched refs:correctMatchCount (Results 1 – 1 of 1) sorted by relevance
481 static inline float recall( int correctMatchCount, int correspondenceCount ) in recall() argument483 return correspondenceCount ? (float)correctMatchCount / (float)correspondenceCount : -1; in recall()486 static inline float precision( int correctMatchCount, int falseMatchCount ) in precision() argument488 …return correctMatchCount + falseMatchCount ? (float)correctMatchCount / (float)(correctMatchCount … in precision()512 int correctMatchCount = 0, falseMatchCount = 0; in computeRecallPrecisionCurve() local517 correctMatchCount++; in computeRecallPrecisionCurve()521 float r = recall( correctMatchCount, correspondenceCount ); in computeRecallPrecisionCurve()522 float p = precision( correctMatchCount, falseMatchCount ); in computeRecallPrecisionCurve()