HomeSort by relevance Sort by last modified time
    Searched refs:sdepth (Results 1 - 25 of 36) sorted by null

1 2

  /external/opencv3/modules/imgproc/perf/
perf_integral.cpp 22 int sdepth = get<2>(GetParam()); local
25 Mat sum(sz, sdepth);
29 TEST_CYCLE() integral(src, sum, sdepth);
44 int sdepth = get<2>(GetParam()); local
47 Mat sum(sz, sdepth);
48 Mat sqsum(sz, sdepth);
53 TEST_CYCLE() integral(src, sum, sqsum, sdepth);
69 int sdepth = get<2>(GetParam()); local
72 Mat sum(sz, sdepth);
73 Mat sqsum(sz, sdepth);
    [all...]
  /external/opencv3/modules/imgproc/src/
sumpixels.cpp 340 static bool ocl_integral( InputArray _src, OutputArray _sum, int sdepth )
345 !(sdepth == CV_32S || sdepth == CV_32F || (doubleSupport && sdepth == CV_64F)))
351 ocl::typeToStr(sdepth), tileSize,
361 UMat buf(bufsize, sdepth);
372 _sum.create(sumsize, sdepth);
380 static bool ocl_integral( InputArray _src, OutputArray _sum, OutputArray _sqsum, int sdepth, int sqdepth )
384 if ( _src.type() != CV_8UC1 || (!doubleSupport && (sdepth == CV_64F || sqdepth == CV_64F)) )
390 ocl::typeToStr(sdepth), ocl::typeToStr(sqdepth)
    [all...]
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)
848 int stype = _src.type(), sdepth = CV_MAT_DEPTH(stype), scn = CV_MAT_CN(stype); local
933 int stype = _src.type(), sdepth = CV_MAT_DEPTH(stype), scn = CV_MAT_CN(stype); local
1017 int stype = _src1.type(), sdepth = CV_MAT_DEPTH(stype), scn = CV_MAT_CN(stype); local
1105 int stype = _src.type(), sdepth = CV_MAT_DEPTH(stype), scn = CV_MAT_CN(stype); local
    [all...]
deriv.cpp 204 int stype = _src.type(), sdepth = CV_MAT_DEPTH(stype), cn = CV_MAT_CN(stype); local
206 ddepth = sdepth;
558 int stype = _src.type(), sdepth = CV_MAT_DEPTH(stype), cn = CV_MAT_CN(stype); local
560 ddepth = sdepth;
596 int ktype = std::max(CV_32F, std::max(ddepth, sdepth));
616 int stype = _src.type(), sdepth = CV_MAT_DEPTH(stype), cn = CV_MAT_CN(stype); local
618 ddepth = sdepth;
641 int ktype = std::max(CV_32F, std::max(ddepth, sdepth));
673 int sdepth = CV_MAT_DEPTH(stype), cn = CV_MAT_CN(stype), esz = CV_ELEM_SIZE(stype); local
676 if (!doubleSupport && (sdepth == CV_64F || ddepth == CV_64F)
805 int stype = _src.type(), sdepth = CV_MAT_DEPTH(stype), cn = CV_MAT_CN(stype); 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
4009 int type = _src.type(), sdepth = CV_MAT_DEPTH(type), cn = CV_MAT_CN(type); local
4453 int sdepth = CV_MAT_DEPTH(srcType), ddepth = CV_MAT_DEPTH(dstType); local
4589 int stype = src.type(), sdepth = CV_MAT_DEPTH(stype), cn = CV_MAT_CN(stype), local
    [all...]
smooth.cpp 1036 int type = _src.type(), sdepth = CV_MAT_DEPTH(type), cn = CV_MAT_CN(type), esz = CV_ELEM_SIZE(type); local
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
1290 int sdepth = CV_MAT_DEPTH(srcType); local
1314 int stype = src.type(), sdepth = CV_MAT_DEPTH(stype), cn = CV_MAT_CN(stype); local
    [all...]
  /external/opencv3/modules/cudaarithm/src/cuda/
add_mat.cu 185 const int sdepth = src1.depth();
188 CV_DbgAssert( sdepth <= CV_64F && ddepth <= CV_64F );
194 if (mask.empty() && (sdepth == CV_8U || sdepth == CV_16U) && ddepth == sdepth)
204 if (sdepth == CV_8U && (src1_.cols & 3) == 0)
209 else if (sdepth == CV_16U && (src1_.cols & 1) == 0)
217 const func_t func = funcs[sdepth][ddepth];
sub_mat.cu 185 const int sdepth = src1.depth();
188 CV_DbgAssert( sdepth <= CV_64F && ddepth <= CV_64F );
194 if (mask.empty() && (sdepth == CV_8U || sdepth == CV_16U) && ddepth == sdepth)
204 if (sdepth == CV_8U && (src1_.cols & 3) == 0)
209 else if (sdepth == CV_16U && (src1_.cols & 1) == 0)
217 const func_t func = funcs[sdepth][ddepth];
div_mat.cu 190 const int sdepth = src1.depth();
193 CV_DbgAssert( sdepth <= CV_64F && ddepth <= CV_64F );
199 const func_t func = funcs[sdepth][ddepth];
mul_mat.cu 176 const int sdepth = src1.depth();
179 CV_DbgAssert( sdepth <= CV_64F && ddepth <= CV_64F );
185 const func_t func = funcs[sdepth][ddepth];
add_scalar.cu 166 const int sdepth = src.depth();
170 CV_DbgAssert( sdepth <= CV_64F && ddepth <= CV_64F && cn <= 4 );
172 const func_t func = funcs[sdepth][ddepth][cn - 1];
mul_scalar.cu 163 const int sdepth = src.depth();
167 CV_DbgAssert( sdepth <= CV_64F && ddepth <= CV_64F && cn <= 4 );
174 const func_t func = funcs[sdepth][ddepth][cn - 1];
sub_scalar.cu 189 const int sdepth = src.depth();
193 CV_DbgAssert( sdepth <= CV_64F && ddepth <= CV_64F && cn <= 4 );
195 const func_t func = funcs[sdepth][ddepth][cn - 1];
div_scalar.cu 231 const int sdepth = src.depth();
235 CV_DbgAssert( sdepth <= CV_64F && ddepth <= CV_64F && cn <= 4 );
252 const func_t func = funcs[sdepth][ddepth][cn - 1];
  /external/opencv/cxcore/src/
cxsumpixels.cpp 888 int sdepth, ddepth, cn, op0 = op; local
    [all...]
  /external/opencv3/modules/imgproc/test/ocl/
test_imgproc.cpp 287 int sdepth, sqdepth; member in struct:cvtest::ocl::Integral
294 sdepth = GET_PARAM(1);
308 randomSubMat(dst, dst_roi, isize, dstBorder, sdepth, 5, 16);
333 OCL_OFF(cv::integral(src_roi, dst_roi, sdepth));
334 OCL_ON(cv::integral(usrc_roi, udst_roi, sdepth));
346 OCL_OFF(cv::integral(src_roi, dst_roi, dst2_roi, sdepth, sqdepth));
347 OCL_ON(cv::integral(usrc_roi, udst_roi, udst2_roi, sdepth, sqdepth));
468 Values(CV_32SC1, CV_32FC1), // desired sdepth
test_accumulate.cpp 57 int sdepth, ddepth, channels; local
69 sdepth = depths.first, ddepth = depths.second;
76 const int stype = CV_MAKE_TYPE(sdepth, channels),
  /external/opencv3/modules/cudaimgproc/src/
corners.cpp 88 const int sdepth = CV_MAT_DEPTH(srcType_);
98 if (sdepth == CV_8U)
match_template.cpp 596 const int sdepth = CV_MAT_DEPTH(srcType);
598 CV_Assert( sdepth == CV_8U || sdepth == CV_32F );
600 if (sdepth == CV_32F)
  /external/opencv3/modules/core/src/cuda/
gpu_mat.cu 477 const int sdepth = depth();
479 if (sdepth == ddepth)
489 CV_DbgAssert( sdepth <= CV_64F && ddepth <= CV_64F );
508 funcs[sdepth][ddepth](reshape(1), dst.reshape(1), stream);
518 const int sdepth = depth();
538 funcs[sdepth][ddepth](reshape(1), dst.reshape(1), alpha, beta, stream);
  /external/opencv3/modules/core/src/
matrix.cpp     [all...]
umatrix.cpp 720 int sdepth = CV_MAT_DEPTH(stype), ddepth = CV_MAT_DEPTH(_type);
721 if( sdepth == ddepth && noScale )
728 bool needDouble = sdepth == CV_64F || ddepth == CV_64F;
732 int wdepth = std::max(CV_32F, sdepth), rowsPerWI = 4;
737 ocl::typeToStr(sdepth), ocl::typeToStr(wdepth), ocl::typeToStr(ddepth),
738 ocl::convertTypeStr(sdepth, wdepth, 1, cvt[0]),
precomp.hpp 83 BinaryFunc getConvertFunc(int sdepth, int ddepth);
  /external/opencv3/modules/cudafilters/src/
filtering.cpp 211 const int sdepth = CV_MAT_DEPTH(srcType);
216 CV_Assert( sdepth == CV_8U || sdepth == CV_16U || sdepth == CV_32F );
365 const int sdepth = CV_MAT_DEPTH(srcType);
372 CV_Assert( sdepth <= CV_64F && cn <= 4 );
394 rowFilter_ = rowFilterFuncs[sdepth][cn - 1];
    [all...]
  /external/opencv3/modules/cudaarithm/src/
element_operations.cpp 131 const int sdepth = src1.empty() ? src2.depth() : src1.depth();
136 dtype = sdepth;
140 CV_Assert( sdepth <= CV_64F && ddepth <= CV_64F );
144 if (sdepth == CV_64F || ddepth == CV_64F)

Completed in 365 milliseconds

1 2