/external/opencv3/modules/ts/include/opencv2/ts/ |
D | cuda_test.hpp | 112 #define EXPECT_MAT_NEAR(m1, m2, eps) EXPECT_PRED_FORMAT3(cvtest::assertMatNear, m1, m2, eps) argument 113 #define ASSERT_MAT_NEAR(m1, m2, eps) ASSERT_PRED_FORMAT3(cvtest::assertMatNear, m1, m2, eps) argument 115 #define EXPECT_SCALAR_NEAR(s1, s2, eps) \ argument 122 #define ASSERT_SCALAR_NEAR(s1, s2, eps) \ argument 130 #define EXPECT_POINT2_NEAR(p1, p2, eps) \ argument 135 #define ASSERT_POINT2_NEAR(p1, p2, eps) \ argument 141 #define EXPECT_POINT3_NEAR(p1, p2, eps) \ argument 147 #define ASSERT_POINT3_NEAR(p1, p2, eps) \ argument 156 #define EXPECT_MAT_SIMILAR(mat1, mat2, eps) \ argument 162 #define ASSERT_MAT_SIMILAR(mat1, mat2, eps) \ argument
|
D | ocl_test.hpp | 91 #define EXPECT_MAT_NORM(mat, eps) \ argument 97 #define EXPECT_MAT_NEAR(mat1, mat2, eps) \ argument 106 #define EXPECT_MAT_NEAR_RELATIVE(mat1, mat2, eps) \ argument 126 #define OCL_EXPECT_MATS_NEAR(name, eps) \ argument 144 #define OCL_EXPECT_MATS_NEAR_RELATIVE(name, eps) \ argument 163 #define OCL_EXPECT_MATS_NEAR_RELATIVE_SPARSE(name, eps) \ argument 181 #define EXPECT_MAT_SIMILAR(mat1, mat2, eps) \ argument
|
/external/opencv3/modules/imgproc/perf/opencl/ |
D | perf_filters.cpp | 68 const double eps = CV_MAT_DEPTH(type) <= CV_32S ? 1 : 1e-5; variable 93 const double eps = ddepth == CV_32S ? 0 : 5e-5; variable 115 const double eps = CV_MAT_DEPTH(type) <= CV_32S ? 1 : 2e-5; variable 227 const double eps = CV_MAT_DEPTH(type) <= CV_32S ? 1 : 1e-5; in OCL_PERF_TEST_P() local 249 const double eps = CV_MAT_DEPTH(type) <= CV_32S ? 2 + DBL_EPSILON : 3e-4; variable 271 const double eps = CV_MAT_DEPTH(type) <= CV_32S ? 1 : 1e-5; variable
|
D | perf_imgwarp.cpp | 75 … const double eps = CV_MAT_DEPTH(type) <= CV_32S ? 1 : interpolation == INTER_CUBIC ? 2e-3 : 1e-4; in OCL_PERF_TEST_P() local 107 const double eps = CV_MAT_DEPTH(type) <= CV_32S ? 1 : 1e-4; in OCL_PERF_TEST_P() local 134 const double eps = CV_MAT_DEPTH(type) <= CV_32S ? 1 : 1e-4; variable 158 const double eps = CV_MAT_DEPTH(type) <= CV_32S ? 1 : 1e-4; variable 183 const double eps = CV_MAT_DEPTH(type) <= CV_32S ? 1 : 1e-4; in OCL_PERF_TEST_P() local
|
D | perf_pyramid.cpp | 66 const double eps = CV_MAT_DEPTH(type) <= CV_32S ? 1 : 1e-5; in OCL_PERF_TEST_P() local 90 const double eps = CV_MAT_DEPTH(type) <= CV_32S ? 1 : 1e-5; in OCL_PERF_TEST_P() local 113 const double eps = CV_MAT_DEPTH(type) <= CV_32S ? 1 : 1e-5; in OCL_PERF_TEST_P() local
|
D | perf_blend.cpp | 64 const double eps = CV_MAT_DEPTH(srcType) <= CV_32S ? 1.0 : 0.2; in OCL_PERF_TEST_P() local
|
/external/opencv3/modules/java/pure_test/src/org/opencv/test/ |
D | OpenCVTestCase.java | 342 public static void assertMatEqual(Mat expected, Mat actual, double eps) { in assertMatEqual() 346 public static void assertMatNotEqual(Mat expected, Mat actual, double eps) { in assertMatNotEqual() 350 public static void assertKeyPointEqual(KeyPoint expected, KeyPoint actual, double eps) { in assertKeyPointEqual() 366 public static void assertDMatchEqual(DMatch expected, DMatch actual, double eps) { in assertDMatchEqual() 374 public static void assertScalarEqual(Scalar expected, Scalar actual, double eps) { in assertScalarEqual() 394 public static void assertPointEquals(Point expected, Point actual, double eps) { in assertPointEquals() 400 public static void assertSizeEquals(Size expected, Size actual, double eps) { in assertSizeEquals() 406 public static void assertPoint3Equals(Point3 expected, Point3 actual, double eps) { in assertPoint3Equals() 441 …static private void compareMats(Mat expected, Mat actual, double eps, boolean isEqualityMeasured) { in compareMats()
|
/external/opencv3/modules/java/android_test/src/org/opencv/test/ |
D | OpenCVTestCase.java | 312 public static void assertMatEqual(Mat expected, Mat actual, double eps) { in assertMatEqual() 316 public static void assertMatNotEqual(Mat expected, Mat actual, double eps) { in assertMatNotEqual() 320 public static void assertKeyPointEqual(KeyPoint expected, KeyPoint actual, double eps) { in assertKeyPointEqual() 336 public static void assertDMatchEqual(DMatch expected, DMatch actual, double eps) { in assertDMatchEqual() 344 public static void assertScalarEqual(Scalar expected, Scalar actual, double eps) { in assertScalarEqual() 364 public static void assertPointEquals(Point expected, Point actual, double eps) { in assertPointEquals() 370 public static void assertSizeEquals(Size expected, Size actual, double eps) { in assertSizeEquals() 376 public static void assertPoint3Equals(Point3 expected, Point3 actual, double eps) { in assertPoint3Equals() 411 …static private void compareMats(Mat expected, Mat actual, double eps, boolean isEqualityMeasured) { in compareMats()
|
/external/opencv3/modules/cudaimgproc/src/cuda/ |
D | mean_shift.cu | 59 int sp, int sr, int maxIter, float eps) in do_mean_shift() 122 …l(unsigned char* out, size_t out_step, int cols, int rows, int sp, int sr, int maxIter, float eps ) in meanshift_kernel() 131 …gpu(const PtrStepSzb& src, PtrStepSzb dst, int sp, int sr, int maxIter, float eps, cudaStream_t st… in meanShiftFiltering_gpu() 151 int sp, int sr, int maxIter, float eps) in meanshiftproc_kernel() 163 …b& src, PtrStepSzb dstr, PtrStepSzb dstsp, int sp, int sr, int maxIter, float eps, cudaStream_t st… in meanShiftProc_gpu()
|
/external/opencv3/modules/imgproc/perf/ |
D | perf_distanceTransform.cpp | 67 double eps = 2e-4; variable 98 double eps = 2e-4; variable
|
D | perf_matchTemplate.cpp | 45 double eps = isNormed ? 1e-5 variable 79 double eps = isNormed ? 1e-6 variable
|
D | perf_pyramids.cpp | 17 const double eps = CV_MAT_DEPTH(matType) <= CV_32S ? 1 : 1e-5; in PERF_TEST_P() local 38 const double eps = CV_MAT_DEPTH(matType) <= CV_32S ? 1 : 1e-5; in PERF_TEST_P() local 60 const double eps = CV_MAT_DEPTH(matType) <= CV_32S ? 1 : 1e-5; in PERF_TEST_P() local
|
/external/opencv3/modules/imgproc/test/ocl/ |
D | test_warp.cpp | 124 double eps = depth < CV_32F ? 0.04 : 0.06; in OCL_TEST_P() local 145 double eps = depth < CV_32F ? 0.03 : 0.06; in OCL_TEST_P() local 225 double eps = depth <= CV_32S ? 1 : 5e-2; in OCL_TEST_P() local 322 double eps = 2.0; in OCL_TEST_P() local
|
/external/opencv3/modules/java/src/ |
D | objdetect+Objdetect.java | 26 …c static void groupRectangles(MatOfRect rectList, MatOfInt weights, int groupThreshold, double eps) in groupRectangles() 49 …tangles_0(long rectList_mat_nativeObj, long weights_mat_nativeObj, int groupThreshold, double eps); in groupRectangles_0()
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/util/ |
D | MathUtils.java | 391 public static int compareTo(double x, double y, double eps) { in compareTo() 452 public static boolean equals(float x, float y, float eps) { in equals() 467 public static boolean equalsIncludingNaN(float x, float y, float eps) { in equalsIncludingNaN()
|
/external/opencv3/modules/calib3d/test/ |
D | test_cameracalibration_artificial.cpp | 102 bool checkErr(double a, double a0, double eps, double delta) in checkErr() 122 const double eps = 1e-2; in compareCameraMatrs() local 146 const double eps = 5e-2; in compareDistCoeffs() local 167 const double eps = 1e-2; in compareShiftVecs() local 196 const double eps = 2e-2; in compareRotationVecs() local
|
D | test_compose_rt.cpp | 126 double eps; member in Differential 168 const double eps = 1e-3; in run() local
|
/external/opencv3/modules/core/test/ |
D | test_hal_core.cpp | 59 double eps = depth == CV_32F ? 1e-5 : 1e-10; in TEST() local 138 double eps = depth == CV_32F ? 1e-5 : 1e-10; in TEST() local
|
/external/opencv3/modules/cudaimgproc/src/ |
D | mean_shift.cpp | 85 float eps = (float) std::max(criteria.epsilon, 0.0); in meanShiftFiltering() local 123 float eps = (float) std::max(criteria.epsilon, 0.0); in meanShiftProc() local
|
/external/opencv/cxcore/src/ |
D | cxjacobieigens.cpp | 69 icvJacobiEigens_32f(float *A, float *V, float *E, int n, float eps) in icvJacobiEigens_32f() 220 icvJacobiEigens_64d(double *A, double *V, double *E, int n, double eps) in icvJacobiEigens_64d() 370 cvEigenVV( CvArr* srcarr, CvArr* evectsarr, CvArr* evalsarr, double eps ) in cvEigenVV()
|
/external/opencv3/modules/cudalegacy/test/ |
D | TestHypothesesFilter.h | 70 Ncv32f eps; variable
|
/external/opencv/cv/src/ |
D | cvmatchcontours.cpp | 65 double eps = 1.e-5; in cvMatchShapes() local 232 double eps = 1.e-5; in cvMatchContourTrees() local
|
/external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/ |
D | lsf_check.c | 32 const int16_t eps=319; /* 0.039 in Q13 (50 Hz)*/ in WebRtcIlbcfix_LsfCheck() local
|
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
D | lp_test_main.c | 254 compare_vec_with_eps(struct lp_type type, const void *res, const void *ref, double eps) in compare_vec_with_eps() 278 double eps = lp_const_eps(type); in compare_vec() local
|
/external/opencv3/modules/video/perf/opencl/ |
D | perf_optflow_dualTVL1.cpp | 82 double eps = 0.9; variable
|