HomeSort by relevance Sort by last modified time
    Searched refs:nearestPointIndex (Results 1 - 2 of 2) sorted by null

  /external/opencv3/modules/features2d/test/
test_rotation_and_scale_invariance.cpp 165 int nearestPointIndex = -1;
170 if(nearestPointIndex >= 0 && usedMask[i1])
179 nearestPointIndex = static_cast<int>(i1);
183 matches.push_back(DMatch(i0, nearestPointIndex, maxIntersectRatio));
184 if(nearestPointIndex >= 0)
185 usedMask[nearestPointIndex] = 1;
  /external/opencv3/modules/features2d/src/
evaluation.cpp 529 int nearestPointIndex = getNearestPoint( recallPrecisionCurve, l_precision );
533 if( nearestPointIndex >= 0 )
534 recall = recallPrecisionCurve[nearestPointIndex].y;
541 int nearestPointIndex = -1;
551 nearestPointIndex = (int)i;
557 return nearestPointIndex;

Completed in 228 milliseconds