Home
last modified time | relevance | path

Searched refs:mean1 (Results 1 – 3 of 3) sorted by relevance

/external/opencv3/modules/videostab/src/
Dglobal_motion.cpp229 Point2f mean1(0.f, 0.f); in estimateGlobMotionLeastSquaresRigid() local
234 mean1 += points1[i]; in estimateGlobMotionLeastSquaresRigid()
238 mean1 *= 1.f / npoints; in estimateGlobMotionLeastSquaresRigid()
246 pt1 = points1[i] - mean1; in estimateGlobMotionLeastSquaresRigid()
260 M(0,2) = mean1.x - R(0,0)*mean0.x - R(0,1)*mean0.y; in estimateGlobMotionLeastSquaresRigid()
261 M(1,2) = mean1.y - R(1,0)*mean0.x - R(1,1)*mean0.y; in estimateGlobMotionLeastSquaresRigid()
/external/opencv3/modules/core/perf/opencl/
Dperf_arithm.cpp708 double mean0 = mean[0], mean1 = mean[1], mean2 = mean[2], mean3 = mean[3]; in OCL_PERF_TEST_P() local
712 SANITY_CHECK(mean1, eps, ERROR_RELATIVE); in OCL_PERF_TEST_P()
738 double mean0 = mean[0], mean1 = mean[1], mean2 = mean[2], mean3 = mean[3]; in OCL_PERF_TEST_P() local
742 SANITY_CHECK(mean1, eps, ERROR_RELATIVE); in OCL_PERF_TEST_P()
/external/opencv3/modules/core/misc/java/test/
DCoreTest.java983 Scalar mean1 = Core.mean(grayRnd, mask1); in testMeanMatMat() local
987 assertScalarEqual(mean, new Scalar(0.5 * (mean1.val[0] + mean2.val[0])), EPS); in testMeanMatMat()