Searched refs:goodCount (Results 1 – 1 of 1) sorted by relevance
/external/opencv/cv/src/ |
D | cvfundam.cpp | 113 int i, count = _err->rows*_err->cols, goodCount = 0; in findInliers() local 120 goodCount += mask[i] = err[i] <= threshold; in findInliers() 121 return goodCount; in findInliers() 200 int i, goodCount, nmodels; in runRANSAC() local 219 goodCount = findInliers( m1, m2, &model_i, err, tmask, reprojThreshold ); in runRANSAC() 221 if( goodCount > MAX(maxGoodCount, modelPoints-1) ) in runRANSAC() 225 maxGoodCount = goodCount; in runRANSAC() 227 (double)(count - goodCount)/count, modelPoints, niters ); in runRANSAC()
|