/external/opencv3/modules/core/misc/java/test/ |
TermCriteriaTest.java | 16 tc2 = new TermCriteria(2, 4, EPS); 70 tc1 = new TermCriteria(2, 4, EPS); 75 assertEquals(EPS, tc2.epsilon); 80 double eps = EPS; local 81 String expected = "{ type: 2, maxCount: 4, epsilon: " + eps + "}";
|
CoreTest.java | 42 assertMatEqual(gray1_32f, dst, EPS); 55 assertMatEqual(gray255_32f, dst, EPS); 112 assertMatEqual(gray0_64f, covar, EPS); 113 assertMatEqual(gray0_64f_1d, mean, EPS); 122 assertMatEqual(gray0_32f, covar, EPS); 123 assertMatEqual(gray0_32f_1d, mean, EPS); 151 assertMatEqual(expected_magnitude, dst, EPS); 152 assertMatEqual(expected_angle, dst_angle, EPS); 180 assertMatEqual(expected_magnitude, dst, EPS); 181 assertMatEqual(expected_angle, dst_angle, EPS * 180/Math.PI) 432 double eps = 0.3; local [all...] |
RotatedRectTest.java | 103 Math.abs((p[0].x + p[2].x) / 2 - center.x) + Math.abs((p[0].y + p[2].y) / 2 - center.y) < EPS); 106 Math.abs((p[1].x + p[3].x) / 2 - center.x) + Math.abs((p[1].y + p[3].y) / 2 - center.y) < EPS); 110 (p[1].y - p[0].y) * (p[2].y - p[1].y)) < EPS); 114 (p[2].y - p[1].y) * (p[3].y - p[2].y)) < EPS); 118 (p[3].y - p[2].y) * (p[0].y - p[3].y)) < EPS); 122 (p[0].y - p[3].y) * (p[1].y - p[0].y)) < EPS); 126 (p[1].y - p[0].y) * (p[1].y - p[0].y) - size.height * size.height) < EPS); 130 (p[1].y - p[2].y) * (p[1].y - p[2].y) - size.width * size.width) < EPS); 132 assertTrue("Angle of the vector 21 with the axes", Math.abs((p[2].x - p[1].x) / size.width - Math.cos(angle * Math.PI / 180)) < EPS); 172 assertPointEquals(new Point(0, 0), r1.center, EPS); [all...] |
KeyPointTest.java | 34 assertPointEquals(new Point(0, 0), keyPoint.pt, EPS); 39 assertPointEquals(new Point(1, 2), keyPoint.pt, EPS);
|
MatTest.java | 25 assertSizeEquals(new Size(5, 6), adjusted.size(), EPS); 33 assertPointEquals(new Point(5, 1), offset, EPS); 34 assertSizeEquals(gray0.size(), size, EPS); 50 assertMatEqual(gray255_32f, dst, EPS); 130 assertMatEqual(truth, dst, EPS); 192 assertMatEqual(answer, cross, EPS); 224 assertMatEqual(grayE_32f, dst, EPS); 264 assertMatEqual(eye, eye.inv(), EPS); 461 assertMatEqual(grayE_32f, dst, EPS); 485 assertMatEqual(truth, dst, EPS); [all...] |
/external/opencv3/modules/imgproc/misc/java/test/ |
ImgprocTest.java | 47 assertMatEqual(src, dst, EPS); 48 assertMatEqual(getMat(CvType.CV_64F, 4), dst2, EPS); 60 assertMatEqual(makeMask(getMat(CvType.CV_64F, 2)), dst, EPS); 61 assertMatEqual(makeMask(getMat(CvType.CV_64F, 4), 2), dst2, EPS); 72 assertMatEqual(getMat(CvType.CV_64F, 4), dst, EPS); 73 assertMatEqual(getMat(CvType.CV_64F, 10), dst2, EPS); 85 assertMatEqual(makeMask(getMat(CvType.CV_64F, 4)), dst, EPS); 86 assertMatEqual(makeMask(getMat(CvType.CV_64F, 10), 2), dst2, EPS); 97 assertMatEqual(getMat(CvType.CV_64F, 4), dst, EPS); 98 assertMatEqual(getMat(CvType.CV_64F, 6), dst2, EPS); [all...] |
/external/opencv3/modules/core/include/opencv2/core/ |
optim.hpp | 152 termcrit.type == (TermCriteria::MAX_ITER + TermCriteria::EPS) && termcrit.epsilon > 0 && termcrit.maxCount > 0 200 TermCriteria termcrit=TermCriteria(TermCriteria::MAX_ITER+TermCriteria::EPS,5000,0.000001)); 231 termcrit.type == (TermCriteria::MAX_ITER + TermCriteria::EPS) && termcrit.epsilon > 0 && termcrit.maxCount > 0 253 TermCriteria termcrit=TermCriteria(TermCriteria::MAX_ITER+TermCriteria::EPS,5000,0.000001));
|
/external/opencv3/modules/java/common_test/src/org/opencv/test/utils/ |
ConvertersTest.java | 47 //assertListDMatchEquals(truth, matches, EPS); 63 assertListEquals(truth, fs, EPS); 89 assertListKeyPointEquals(truth, kps, EPS); 104 // assertListEqualMat(truth, mats, EPS); 120 assertListPointEquals(truth, points, EPS); 135 assertListPointEquals(truth, points, EPS); 150 assertListPointEquals(truth, points, EPS); 165 assertListPoint3Equals(truth, points, EPS); 180 assertListPoint3Equals(truth, points, EPS); 195 assertListPoint3Equals(truth, points, EPS); [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_float.py | [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_float.py | [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_float.py | [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_float.py | [all...] |
/external/opencv3/modules/features2d/misc/java/test/ |
BruteForceHammingDescriptorMatcherTest.java | 172 assertListDMatchEquals(Arrays.asList(truth), matches.toList(), EPS); 184 assertListDMatchEquals(Arrays.asList(truth[0], truth[1]), matches.toList(), EPS); 194 assertListDMatchEquals(Arrays.asList(truth), matches.toList(), EPS); 205 assertListDMatchEquals(Arrays.asList(truth[0], truth[1]), matches.toList(), EPS); 217 assertMatEqual(matches.get(1), new MatOfDMatch(truth[1]), EPS); 218 assertMatEqual(matches.get(2), new MatOfDMatch(truth[2]), EPS);
|
BruteForceHammingLUTDescriptorMatcherTest.java | 171 assertArrayDMatchEquals(truth, matches.toArray(), EPS); 183 assertListDMatchEquals(Arrays.asList(truth[0], truth[1]), matches.toList(), EPS); 199 assertArrayDMatchEquals(truth, matches.toArray(), EPS); 210 assertListDMatchEquals(Arrays.asList(truth[0], truth[1]), matches.toList(), EPS);
|
BruteForceL1DescriptorMatcherTest.java | 188 assertArrayDMatchEquals(truth, matches.toArray(), EPS); 200 assertListDMatchEquals(Arrays.asList(truth[0], truth[1]), matches.toList(), EPS); 210 assertArrayDMatchEquals(truth, matches.toArray(), EPS); 221 assertListDMatchEquals(Arrays.asList(truth[0], truth[1]), matches.toList(), EPS);
|
BruteForceSL2DescriptorMatcherTest.java | 196 assertArrayDMatchEquals(truth, matches.toArray(), EPS); 208 assertListDMatchEquals(Arrays.asList(truth[0], truth[1]), matches.toList(), EPS); 218 assertArrayDMatchEquals(truth, matches.toArray(), EPS); 233 assertListDMatchEquals(Arrays.asList(truth[0], truth[1]), matches.toList(), EPS);
|
FASTFeatureDetectorTest.java | 61 assertListKeyPointEquals(Arrays.asList(truth), keypoints.toList(), EPS); 75 assertListKeyPointEquals(Arrays.asList(truth[0], truth[1]), keypoints.toList(), EPS);
|
/external/eigen/lapack/ |
dlamch.f | 28 *> = 'E' or 'e', DLAMCH := eps 31 *> = 'P' or 'p', DLAMCH := eps*base 39 *> eps = relative machine precision 42 *> prec = eps*base 48 *> rmax = overflow threshold - (base**emax)*(1-eps) 82 DOUBLE PRECISION RND, EPS, SFMIN, SMALL, RMACH 100 EPS = EPSILON(ZERO) * 0.5 102 EPS = EPSILON(ZERO) 106 RMACH = EPS 115 SFMIN = SMALL*( ONE+EPS ) [all...] |
slamch.f | 32 *> = 'E' or 'e', SLAMCH := eps 35 *> = 'P' or 'p', SLAMCH := eps*base 43 *> eps = relative machine precision 46 *> prec = eps*base 52 *> rmax = overflow threshold - (base**emax)*(1-eps) 86 REAL RND, EPS, SFMIN, SMALL, RMACH 104 EPS = EPSILON(ZERO) * 0.5 106 EPS = EPSILON(ZERO) 110 RMACH = EPS 119 SFMIN = SMALL*( ONE+EPS ) [all...] |
/external/opencv3/modules/calib3d/misc/java/test/ |
Calib3dTest.java | 50 assertMatEqual(outRvec, rvec3, EPS); 51 assertMatEqual(outTvec, tvec3, EPS); 255 assertMatEqual(truth, fm, EPS); 294 assertMatEqual(truth, hmg, EPS); 388 assertMatEqual(truth, _3dPoints, EPS); 424 assertMatEqual(truth, _3dPoints, EPS); 458 assertMatEqual(truth, _3dPoints, EPS); 471 assertMatEqual(truth, R, EPS); 476 assertMatEqual(r, r2, EPS); 530 assertMatEqual(truth_rvec, rvec, EPS); [all...] |
/external/opencv3/modules/cudaimgproc/src/ |
mean_shift.cpp | 62 void meanShiftFiltering_gpu(const PtrStepSzb& src, PtrStepSzb dst, int sp, int sr, int maxIter, float eps, cudaStream_t stream); 82 if (!(criteria.type & TermCriteria::EPS)) 85 float eps = (float) std::max(criteria.epsilon, 0.0); 87 meanShiftFiltering_gpu(src, dst, sp, sr, maxIter, eps, StreamAccessor::getStream(stream)); 97 void meanShiftProc_gpu(const PtrStepSzb& src, PtrStepSzb dstr, PtrStepSzb dstsp, int sp, int sr, int maxIter, float eps, cudaStream_t stream); 120 if (!(criteria.type & TermCriteria::EPS)) 123 float eps = (float) std::max(criteria.epsilon, 0.0); 125 meanShiftProc_gpu(src, dstr, dstsp, sp, sr, maxIter, eps, StreamAccessor::getStream(stream));
|
/external/opencv3/modules/core/misc/java/src/java/ |
core+TermCriteria.java | 17 public static final int EPS = 2; 27 * the type of termination criteria: COUNT, EPS or COUNT + EPS.
|
/external/opencv3/modules/video/perf/opencl/ |
perf_optflow_pyrlk.cpp | 78 const TermCriteria criteria = TermCriteria(TermCriteria::COUNT+TermCriteria::EPS, 30, 0.01); 81 const double eps = 1.0; local 95 SANITY_CHECK(uNextPts, eps);
|
/external/opencv3/samples/cpp/ |
kmeans.cpp | 57 TermCriteria( TermCriteria::EPS+TermCriteria::COUNT, 10, 1.0),
|
/external/opencv3/samples/cpp/tutorial_code/TrackingMotion/ |
cornerSubPix_Demo.cpp | 97 TermCriteria criteria = TermCriteria( TermCriteria::EPS + TermCriteria::COUNT, 40, 0.001 );
|