Home
last modified time | relevance | path

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

/external/opencv3/modules/features2d/test/
Dtest_rotation_and_scale_invariance.cpp165 int nearestPointIndex = -1; in matchKeyPoints() local
170 if(nearestPointIndex >= 0 && usedMask[i1]) in matchKeyPoints()
179 nearestPointIndex = static_cast<int>(i1); in matchKeyPoints()
183 matches.push_back(DMatch(i0, nearestPointIndex, maxIntersectRatio)); in matchKeyPoints()
184 if(nearestPointIndex >= 0) in matchKeyPoints()
185 usedMask[nearestPointIndex] = 1; in matchKeyPoints()
/external/opencv3/modules/features2d/src/
Devaluation.cpp529 int nearestPointIndex = getNearestPoint( recallPrecisionCurve, l_precision ); in getRecall() local
533 if( nearestPointIndex >= 0 ) in getRecall()
534 recall = recallPrecisionCurve[nearestPointIndex].y; in getRecall()
541 int nearestPointIndex = -1; in getNearestPoint() local
551 nearestPointIndex = (int)i; in getNearestPoint()
557 return nearestPointIndex; in getNearestPoint()