Lines Matching refs:_src
193 static bool IPPDerivScharr(InputArray _src, OutputArray _dst, int ddepth, int dx, int dy, double sc… in IPPDerivScharr() argument
204 int stype = _src.type(), sdepth = CV_MAT_DEPTH(stype), cn = CV_MAT_CN(stype); in IPPDerivScharr()
209 Mat src = _src.getMat(); in IPPDerivScharr()
227 _dst.create( _src.size(), dtype); in IPPDerivScharr()
307 static bool IPPDerivScharr(InputArray _src, OutputArray _dst, int ddepth, int dx, int dy, double sc…
316 Mat src = _src.getMat(), dst = _dst.getMat();
411 static bool IPPDerivSobel(InputArray _src, OutputArray _dst, int ddepth, int dx, int dy, int ksize,… in IPPDerivSobel() argument
417 if (1 != _src.channels()) in IPPDerivSobel()
422 Mat src = _src.getMat(), dst = _dst.getMat(); in IPPDerivSobel()
555 void cv::Sobel( InputArray _src, OutputArray _dst, int ddepth, int dx, int dy, in Sobel() argument
558 int stype = _src.type(), sdepth = CV_MAT_DEPTH(stype), cn = CV_MAT_CN(stype); in Sobel()
562 _dst.create( _src.size(), dtype ); in Sobel()
567 Mat src = _src.getMat(), dst = _dst.getMat(); in Sobel()
580 if (IPPDerivScharr(_src, _dst, ddepth, dx, dy, scale, delta, borderType)) in Sobel()
588 if (IPPDerivSobel(_src, _dst, ddepth, dx, dy, ksize, scale, delta, borderType)) in Sobel()
609 sepFilter2D( _src, _dst, ddepth, kx, ky, Point(-1, -1), delta, borderType ); in Sobel()
613 void cv::Scharr( InputArray _src, OutputArray _dst, int ddepth, int dx, int dy, in Scharr() argument
616 int stype = _src.type(), sdepth = CV_MAT_DEPTH(stype), cn = CV_MAT_CN(stype); in Scharr()
620 _dst.create( _src.size(), dtype ); in Scharr()
625 Mat src = _src.getMat(), dst = _dst.getMat(); in Scharr()
634 if (IPPDerivScharr(_src, _dst, ddepth, dx, dy, scale, delta, borderType)) in Scharr()
654 sepFilter2D( _src, _dst, ddepth, kx, ky, Point(-1, -1), delta, borderType ); in Scharr()
663 static bool ocl_Laplacian5(InputArray _src, OutputArray _dst, in ocl_Laplacian5() argument
672 int stype = _src.type(); in ocl_Laplacian5()
689 size_t src_step = _src.step(), src_offset = _src.offset(); in ocl_Laplacian5()
699 …(_src.cols() >= (int) (kernelX.cols + tileSizeX) && _src.rows() >= (int) (kernelY.cols + tileSizeY… in ocl_Laplacian5()
705 Size size = _src.size(), wholeSize; in ocl_Laplacian5()
742 UMat src = _src.getUMat(); in ocl_Laplacian5()
780 sepFilter2D(_src, d2x, depth, kd, ks, Point(-1, -1), 0, borderType); in ocl_Laplacian5()
781 sepFilter2D(_src, d2y, depth, ks, kd, Point(-1, -1), 0, borderType); in ocl_Laplacian5()
802 void cv::Laplacian( InputArray _src, OutputArray _dst, int ddepth, int ksize, in Laplacian() argument
805 int stype = _src.type(), sdepth = CV_MAT_DEPTH(stype), cn = CV_MAT_CN(stype); in Laplacian()
808 _dst.create( _src.size(), CV_MAKETYPE(ddepth, cn) ); in Laplacian()
813 … if ((ksize == 3 || ksize == 5) && ((borderType & BORDER_ISOLATED) != 0 || !_src.isSubmatrix()) && in Laplacian()
820 Mat src = _src.getMat(), dst = _dst.getMat(); in Laplacian()
878 Mat src = _src.getMat(), dst = _dst.getMat(); in Laplacian()
898 filter2D( _src, _dst, ddepth, kernel, Point(-1, -1), delta, borderType ); in Laplacian()
909 ocl_Laplacian5(_src, _dst, kd, ks, scale, in Laplacian()
918 Mat src = _src.getMat(), dst = _dst.getMat(); in Laplacian()