Lines Matching refs:sdepth

340 static bool ocl_integral( InputArray _src, OutputArray _sum, int sdepth )  in ocl_integral()  argument
345 !(sdepth == CV_32S || sdepth == CV_32F || (doubleSupport && sdepth == CV_64F))) in ocl_integral()
351 ocl::typeToStr(sdepth), tileSize, in ocl_integral()
361 UMat buf(bufsize, sdepth); in ocl_integral()
372 _sum.create(sumsize, sdepth); in ocl_integral()
380 static bool ocl_integral( InputArray _src, OutputArray _sum, OutputArray _sqsum, int sdepth, int sq… in ocl_integral() argument
384 if ( _src.type() != CV_8UC1 || (!doubleSupport && (sdepth == CV_64F || sqdepth == CV_64F)) ) in ocl_integral()
390 ocl::typeToStr(sdepth), ocl::typeToStr(sqdepth), in ocl_integral()
401 UMat buf(bufsize, sdepth); in ocl_integral()
413 _sum.create(sumsize, sdepth); in ocl_integral()
428 …putArray _src, OutputArray _sum, OutputArray _sqsum, OutputArray _tilted, int sdepth, int sqdepth ) in integral() argument
431 if( sdepth <= 0 ) in integral()
432 sdepth = depth == CV_8U ? CV_32S : CV_64F; in integral()
435 sdepth = CV_MAT_DEPTH(sdepth), sqdepth = CV_MAT_DEPTH(sqdepth); in integral()
442 CV_OCL_RUN(ocl::useOpenCL(), ocl_integral(_src, _sum, sdepth)) in integral()
445 CV_OCL_RUN(ocl::useOpenCL(), ocl_integral(_src, _sum, _sqsum, sdepth, sqdepth)) in integral()
450 _sum.create( isize, CV_MAKETYPE(sdepth, cn) ); in integral()
462 …if( ( depth == CV_8U ) && ( sdepth == CV_32F || sdepth == CV_32S ) && ( !_tilted.needed() ) && ( !… in integral()
466 if( sdepth == CV_32F ) in integral()
477 else if( sdepth == CV_32S ) in integral()
500 _tilted.create( isize, CV_MAKETYPE(sdepth, cn) ); in integral()
505 if( depth == CV_8U && sdepth == CV_32S && sqdepth == CV_64F ) in integral()
507 else if( depth == CV_8U && sdepth == CV_32S && sqdepth == CV_32F ) in integral()
509 else if( depth == CV_8U && sdepth == CV_32S && sqdepth == CV_32S ) in integral()
511 else if( depth == CV_8U && sdepth == CV_32F && sqdepth == CV_64F ) in integral()
513 else if( depth == CV_8U && sdepth == CV_32F && sqdepth == CV_32F ) in integral()
515 else if( depth == CV_8U && sdepth == CV_64F && sqdepth == CV_64F ) in integral()
517 else if( depth == CV_16U && sdepth == CV_64F && sqdepth == CV_64F ) in integral()
519 else if( depth == CV_16S && sdepth == CV_64F && sqdepth == CV_64F ) in integral()
521 else if( depth == CV_32F && sdepth == CV_32F && sqdepth == CV_64F ) in integral()
523 else if( depth == CV_32F && sdepth == CV_32F && sqdepth == CV_32F ) in integral()
525 else if( depth == CV_32F && sdepth == CV_64F && sqdepth == CV_64F ) in integral()
527 else if( depth == CV_64F && sdepth == CV_64F && sqdepth == CV_64F ) in integral()
536 void cv::integral( InputArray src, OutputArray sum, int sdepth ) in integral() argument
538 integral( src, sum, noArray(), noArray(), sdepth ); in integral()
541 void cv::integral( InputArray src, OutputArray sum, OutputArray sqsum, int sdepth, int sqdepth ) in integral() argument
543 integral( src, sum, sqsum, noArray(), sdepth, sqdepth ); in integral()