HomeSort by relevance Sort by last modified time
    Searched defs:ddepth (Results 1 - 18 of 18) sorted by null

  /external/opencv3/modules/core/perf/
perf_reduce.cpp 27 int ddepth = -1; local
29 ddepth = CV_32S;
32 Mat vec(1, sz.width, ddepth < 0 ? matType : ddepth);
38 TEST_CYCLE_MULTIRUN(runs) reduce(src, vec, 0, reduceOp, ddepth);
55 int ddepth = -1; local
57 ddepth = CV_32S;
60 Mat vec(sz.height, 1, ddepth < 0 ? matType : ddepth);
65 TEST_CYCLE() reduce(src, vec, 1, reduceOp, ddepth);
    [all...]
  /external/opencv3/samples/cpp/tutorial_code/ImgTrans/
Laplace_Demo.cpp 25 int ddepth = CV_16S; local
46 Laplacian( src_gray, dst, ddepth, kernel_size, scale, delta, BORDER_DEFAULT );
Sobel_Demo.cpp 26 int ddepth = CV_16S; local
47 //Scharr( src_gray, grad_x, ddepth, 1, 0, scale, delta, BORDER_DEFAULT );
48 Sobel( src_gray, grad_x, ddepth, 1, 0, 3, scale, delta, BORDER_DEFAULT );
52 //Scharr( src_gray, grad_y, ddepth, 0, 1, scale, delta, BORDER_DEFAULT );
53 Sobel( src_gray, grad_y, ddepth, 0, 1, 3, scale, delta, BORDER_DEFAULT );
filter2D_demo.cpp 26 int ddepth; local
44 ddepth = -1;
60 filter2D(src, dst, ddepth , kernel, anchor, delta, BORDER_DEFAULT );
  /external/opencv3/modules/core/perf/opencl/
perf_matop.cpp 69 const int type = get<1>(params), ddepth = CV_MAT_DEPTH(type) == CV_8U ? CV_32F : CV_8U, local
70 cn = CV_MAT_CN(type), dtype = CV_MAKE_TYPE(ddepth, cn);
  /external/opencv3/modules/imgproc/perf/
perf_sepfilters.cpp 42 int ddepth = get<1>(GetParam()); local
48 Mat dst(size, ddepth);
52 TEST_CYCLE() Sobel(src, dst, ddepth, dx, dy, 3, 1, 0, border);
67 int ddepth = get<1>(GetParam()); local
73 Mat dst(size, ddepth);
80 TEST_CYCLE() Sobel(src, dst, ddepth, dx, dy, 3, 1, 0, border);
95 int ddepth = get<1>(GetParam()); local
101 Mat dst(size, ddepth);
105 TEST_CYCLE() Sobel(src, dst, ddepth, dx, dy, 5, 1, 0, border);
120 int ddepth = get<1>(GetParam()) local
150 int ddepth = get<1>(GetParam()); local
175 int ddepth = get<1>(GetParam()); local
203 int ddepth = get<1>(GetParam()); local
228 int ddepth = get<1>(GetParam()); local
    [all...]
  /external/opencv3/modules/imgproc/test/ocl/
test_accumulate.cpp 57 int sdepth, ddepth, channels; local
69 sdepth = depths.first, ddepth = depths.second;
77 dtype = CV_MAKE_TYPE(ddepth, channels);
test_boxfilter.cpp 124 int ddepth = depth == CV_8U ? CV_32S : CV_64F; local
126 OCL_OFF(cv::sqrBoxFilter(src_roi, dst_roi, ddepth, ksize, anchor, normalize, borderType));
127 OCL_ON(cv::sqrBoxFilter(usrc_roi, udst_roi, ddepth, ksize, anchor, normalize, borderType));
  /external/opencv3/modules/imgproc/perf/opencl/
perf_filters.cpp 92 ddepth = depth == CV_8U ? CV_32S : CV_32F; local
93 const double eps = ddepth == CV_32S ? 0 : 5e-5;
95 checkDeviceMaxMemoryAllocSize(srcSize, CV_MAKE_TYPE(ddepth, CV_MAT_CN(type)));
100 OCL_TEST_CYCLE() cv::sqrBoxFilter(src, dst, ddepth, ksize, Point(-1, -1), false);
perf_imgproc.cpp 225 const int ddepth = get<1>(params); local
227 checkDeviceMaxMemoryAllocSize(srcSize, ddepth);
229 UMat src(srcSize, CV_8UC1), dst(srcSize + Size(1, 1), ddepth);
232 OCL_TEST_CYCLE() cv::integral(src, dst, ddepth);
241 const int ddepth = get<1>(params); local
243 checkDeviceMaxMemoryAllocSize(srcSize, ddepth);
245 UMat src(srcSize, CV_8UC1), sum(srcSize + Size(1, 1), ddepth), sqsum(srcSize + Size(1, 1), CV_32F);
248 OCL_TEST_CYCLE() cv::integral(src, sum, sqsum, ddepth, CV_32F);
  /external/opencv/cxcore/src/
cxsumpixels.cpp 888 int sdepth, ddepth, cn, op0 = op; local
    [all...]
  /external/opencv3/modules/imgproc/src/
accum.cpp 769 inline int getAccTabIdx(int sdepth, int ddepth)
771 return sdepth == CV_8U && ddepth == CV_32F ? 0 :
772 sdepth == CV_8U && ddepth == CV_64F ? 1 :
773 sdepth == CV_16U && ddepth == CV_32F ? 2 :
774 sdepth == CV_16U && ddepth == CV_64F ? 3 :
775 sdepth == CV_32F && ddepth == CV_32F ? 4 :
776 sdepth == CV_32F && ddepth == CV_64F ? 5 :
777 sdepth == CV_64F && ddepth == CV_64F ? 6 : -1;
798 int stype = _src.type(), sdepth = CV_MAT_DEPTH(stype), cn = CV_MAT_CN(stype), ddepth = _dst.depth(); local
801 if (!doubleSupport && (sdepth == CV_64F || ddepth == CV_64F)
849 int dtype = _dst.type(), ddepth = CV_MAT_DEPTH(dtype), dcn = CV_MAT_CN(dtype); local
934 int dtype = _dst.type(), ddepth = CV_MAT_DEPTH(dtype), dcn = CV_MAT_CN(dtype); local
1018 int dtype = _dst.type(), ddepth = CV_MAT_DEPTH(dtype), dcn = CV_MAT_CN(dtype); local
1106 int dtype = _dst.type(), ddepth = CV_MAT_DEPTH(dtype), dcn = CV_MAT_CN(dtype); local
    [all...]
smooth.cpp 1214 int sdepth = CV_MAT_DEPTH(srcType), ddepth = CV_MAT_DEPTH(sumType); local
1250 int sdepth = CV_MAT_DEPTH(sumType), ddepth = CV_MAT_DEPTH(dstType); local
    [all...]
filter.cpp 3628 int sdepth = CV_MAT_DEPTH(srcType), ddepth = CV_MAT_DEPTH(bufType); local
3683 int sdepth = CV_MAT_DEPTH(bufType), ddepth = CV_MAT_DEPTH(dstType); local
3784 int sdepth = CV_MAT_DEPTH(_srcType), ddepth = CV_MAT_DEPTH(_dstType); local
4453 int sdepth = CV_MAT_DEPTH(srcType), ddepth = CV_MAT_DEPTH(dstType); local
    [all...]
  /external/opencv3/modules/core/src/
stat.cpp 1069 int ddepth = std::max(sum_op == OCL_OP_SUM_SQR ? CV_32F : CV_32S, depth), local
    [all...]
arithm.cpp 1818 int dtype = _dst.type(), ddepth = CV_MAT_DEPTH(dtype), wdepth = std::max(CV_32S, CV_MAT_DEPTH(wtype)); local
    [all...]
  /external/opencv3/modules/core/test/ocl/
test_arithm.cpp 1714 int sdepth, ddepth, cn, dim, dtype; local
    [all...]
  /cts/apps/CtsVerifier/libs/
opencv3-android.jar 

Completed in 1279 milliseconds