HomeSort by relevance Sort by last modified time
    Searched full:sqdepth (Results 1 - 6 of 6) sorted by null

  /external/opencv3/modules/imgproc/src/
sumpixels.cpp 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),
402 UMat buf_sq(bufsize, sqdepth);
415 _sqsum.create(sumsize, sqdepth);
428 void cv::integral( InputArray _src, OutputArray _sum, OutputArray _sqsum, OutputArray _tilted, int sdepth, int sqdepth )
433 if ( sqdepth <= 0 )
434 sqdepth = CV_64F;
435 sdepth = CV_MAT_DEPTH(sdepth), sqdepth = CV_MAT_DEPTH(sqdepth);
    [all...]
  /external/opencv3/modules/imgproc/test/ocl/
test_imgproc.cpp 287 int sdepth, sqdepth; member in struct:cvtest::ocl::Integral
295 sqdepth = GET_PARAM(2);
311 randomSubMat(dst2, dst2_roi, isize, dst2Border, sqdepth, 5, 16);
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));
350 sqdepth == CV_32F ? Near2(1e-6, true) : Near2();
469 Values(CV_32FC1, CV_64FC1), // desired sqdepth
  /external/opencv3/doc/py_tutorials/py_bindings/py_bindings_basics/
py_bindings_basics.markdown 103 OutputArray sqsum, int sdepth = -1, int sqdepth = -1 );
108 int sdepth = -1, int sqdepth = -1 );
  /external/opencv3/modules/java/src/
imgproc+Imgproc.java     [all...]
imgproc.cpp     [all...]
  /external/opencv3/modules/imgproc/include/opencv2/
imgproc.hpp     [all...]

Completed in 1326 milliseconds