Searched refs:maxError (Results 1 – 5 of 5) sorted by relevance
/external/opencv3/modules/calib3d/test/ |
D | test_solvepnp_ransac.cpp | 115 … rng, int mode, int method, const vector<Point3f>& points, const double* epsilon, double& maxError) in runTest() argument 149 if (error > maxError) in runTest() 150 maxError = error; in runTest() 172 double maxError = 0; in run() local 176 if (runTest(rng, mode, method, points, eps, maxError)) in run() 183 … method, totalTestsCount - successfulTestsCount, totalTestsCount, maxError, mode); in run() 188 << " (err < " << maxError << ")" << endl; in run() 211 … rng, int mode, int method, const vector<Point3f>& points, const double* epsilon, double& maxError) in runTest() argument 247 if (error > maxError) in runTest() 248 maxError = error; in runTest()
|
/external/skia/tests/ |
D | FontMgrAndroidParserTest.cpp | 111 double maxError = 0; in test_parse_fixed_r() local 124 maxError = SkTMax(maxError, error); in test_parse_fixed_r() 131 return maxError; in test_parse_fixed_r()
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/ |
D | GraggBulirschStoerIntegrator.java | 627 double maxError = Double.MAX_VALUE; in integrate() local 707 if ((error > 1.0e15) || ((k > 1) && (error > maxError))) { in integrate() 714 maxError = FastMath.max(4 * error, 1.0); in integrate()
|
/external/opencv3/modules/videostab/include/opencv2/videostab/ |
D | inpainting.hpp | 200 const Mat &flowX, const Mat &flowY, const Mat &errors, float maxError,
|
/external/opencv3/modules/videostab/src/ |
D | inpainting.cpp | 474 const Mat &flowX, const Mat &flowY, const Mat &errors, float maxError, in calcFlowMask() argument 494 if (mask0_(y0,x0) && errors_(y0,x0) < maxError) in calcFlowMask()
|