Searched refs:dst_lab (Results 1 – 2 of 2) sorted by relevance
/external/opencv3/modules/photo/src/ |
D | denoising.cpp | 202 Mat dst_lab(src_size, CV_MAKE_TYPE(depth, 3)); in fastNlMeansDenoisingColored() local 203 mixChannels(l_ab_denoised, 2, &dst_lab, 1, from_to, 3); in fastNlMeansDenoisingColored() 205 cvtColor(dst_lab, dst, COLOR_Lab2LBGR, cn); in fastNlMeansDenoisingColored() 429 Mat dst_lab(srcImgs[0].size(), srcImgs[0].type()); in fastNlMeansDenoisingColoredMulti() local 430 mixChannels(l_ab_denoised, 2, &dst_lab, 1, from_to, 3); in fastNlMeansDenoisingColoredMulti() 432 cvtColor(dst_lab, dst, COLOR_Lab2LBGR); in fastNlMeansDenoisingColoredMulti()
|
D | fast_nlmeans_denoising_opencl.hpp | 211 UMat dst_lab(src.size(), CV_8UC3); in ocl_fastNlMeansDenoisingColored() local 212 mixChannels(l_ab_denoised, std::vector<UMat>(1, dst_lab), from_to, 3); in ocl_fastNlMeansDenoisingColored() 214 cvtColor(dst_lab, dst, COLOR_Lab2LBGR, src.channels()); in ocl_fastNlMeansDenoisingColored()
|