Home
last modified time | relevance | path

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

/external/opencv3/modules/features2d/src/
Devaluation.cpp481 static inline float recall( int correctMatchCount, int correspondenceCount ) in recall() argument
483 return correspondenceCount ? (float)correctMatchCount / (float)correspondenceCount : -1; in recall()
486 static inline float precision( int correctMatchCount, int falseMatchCount ) in precision() argument
488 …return correctMatchCount + falseMatchCount ? (float)correctMatchCount / (float)(correctMatchCount in precision()
512 int correctMatchCount = 0, falseMatchCount = 0; in computeRecallPrecisionCurve() local
517 correctMatchCount++; in computeRecallPrecisionCurve()
521 float r = recall( correctMatchCount, correspondenceCount ); in computeRecallPrecisionCurve()
522 float p = precision( correctMatchCount, falseMatchCount ); in computeRecallPrecisionCurve()