Home
last modified time | relevance | path

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

/external/opencv3/modules/calib3d/src/
Dptsetreg.cpp209 int i, goodCount, nmodels; in run() local
230 goodCount = findInliers( m1, m2, model_i, err, mask, threshold ); in run()
232 if( goodCount > MAX(maxGoodCount, modelPoints-1) ) in run()
236 maxGoodCount = goodCount; in run()
237 …niters = RANSACUpdateNumIters( confidence, (double)(count - goodCount)/count, modelPoints, niters … in run()
/external/opencv/cv/src/
Dcvfundam.cpp113 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()