Lines Matching refs:_src
104 void cv::fastNlMeansDenoising( InputArray _src, OutputArray _dst, float h, in fastNlMeansDenoising() argument
107 fastNlMeansDenoising(_src, _dst, std::vector<float>(1, h), in fastNlMeansDenoising()
111 void cv::fastNlMeansDenoising( InputArray _src, OutputArray _dst, const std::vector<float>& h, in fastNlMeansDenoising() argument
114 int hn = (int)h.size(), type = _src.type(), depth = CV_MAT_DEPTH(type), cn = CV_MAT_CN(type); in fastNlMeansDenoising()
117 Size src_size = _src.size(); in fastNlMeansDenoising()
118 CV_OCL_RUN(_src.dims() <= 2 && (_src.isUMat() || _dst.isUMat()) && in fastNlMeansDenoising()
120 ocl_fastNlMeansDenoising(_src, _dst, &h[0], hn, in fastNlMeansDenoising()
123 Mat src = _src.getMat(); in fastNlMeansDenoising()
168 void cv::fastNlMeansDenoisingColored( InputArray _src, OutputArray _dst, in fastNlMeansDenoisingColored() argument
172 int type = _src.type(), depth = CV_MAT_DEPTH(type), cn = CV_MAT_CN(type); in fastNlMeansDenoisingColored()
173 Size src_size = _src.size(); in fastNlMeansDenoisingColored()
180 CV_OCL_RUN(_src.dims() <= 2 && (_dst.isUMat() || _src.isUMat()) && in fastNlMeansDenoisingColored()
182 ocl_fastNlMeansDenoisingColored(_src, _dst, h, hForColorComponents, in fastNlMeansDenoisingColored()
185 Mat src = _src.getMat(); in fastNlMeansDenoisingColored()