Home
last modified time | relevance | path

Searched refs:fastNlMeansDenoising (Results 1 – 14 of 14) sorted by relevance

/external/opencv3/modules/photo/test/ocl/
Dtest_denoising.cpp85 …OCL_OFF(cv::fastNlMeansDenoising(src_roi, dst_roi, std::vector<float>(1, h[0]), templateWindowSize… in OCL_TEST_P()
86 …OCL_ON(cv::fastNlMeansDenoising(usrc_roi, udst_roi, std::vector<float>(1, h[0]), templateWindowSiz… in OCL_TEST_P()
100 …OCL_OFF(cv::fastNlMeansDenoising(src_roi, dst_roi, h, templateWindowSize, searchWindowSize, normTy… in OCL_TEST_P()
101 …OCL_ON(cv::fastNlMeansDenoising(usrc_roi, udst_roi, h, templateWindowSize, searchWindowSize, normT… in OCL_TEST_P()
/external/opencv3/modules/photo/src/
Ddenoising.cuda.cpp64 void cv::cuda::fastNlMeansDenoising(InputArray, OutputArray, float, int, int, Stream&) { throw_no_c… in fastNlMeansDenoising() function in cv::cuda
119 void cv::cuda::fastNlMeansDenoising(InputArray _src, OutputArray _dst, float h, int search_window, … in fastNlMeansDenoising() function in cv::cuda
163 fastNlMeansDenoising(l, l, h_luminance, search_window, block_window, stream); in fastNlMeansDenoisingColored()
164 fastNlMeansDenoising(ab, ab, h_color, search_window, block_window, stream); in fastNlMeansDenoisingColored()
Ddenoising.cpp104 void cv::fastNlMeansDenoising( InputArray _src, OutputArray _dst, float h, in fastNlMeansDenoising() function in cv
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() function in cv
131 tegra::fastNlMeansDenoising(src, dst, h[0], templateWindowSize, searchWindowSize)) in fastNlMeansDenoising()
198 fastNlMeansDenoising(l, l, h, templateWindowSize, searchWindowSize); in fastNlMeansDenoisingColored()
199 fastNlMeansDenoising(ab, ab, hForColorComponents, templateWindowSize, searchWindowSize); in fastNlMeansDenoisingColored()
Dfast_nlmeans_denoising_opencl.hpp208 fastNlMeansDenoising(l_ab[0], l_ab_denoised[0], h, templateWindowSize, searchWindowSize); in ocl_fastNlMeansDenoisingColored()
209fastNlMeansDenoising(l_ab[1], l_ab_denoised[1], hForColorComponents, templateWindowSize, searchWin… in ocl_fastNlMeansDenoisingColored()
/external/opencv3/modules/photo/test/
Dtest_denoising.cpp72 fastNlMeansDenoising(original, result, 10); in TEST()
153 cv::fastNlMeansDenoising(img, filtered); in TEST()
166 fastNlMeansDenoising(src, dst, 5, 7, 21); in TEST()
Dtest_denoising.cuda.cpp103 cv::cuda::fastNlMeansDenoising(GpuMat(gray), dgray, 20); in TEST()
/external/opencv3/modules/photo/perf/
Dperf_cuda.cpp132 TEST_CYCLE() cv::cuda::fastNlMeansDenoising(d_src, dst, h, search_widow_size, block_size);
140 TEST_CYCLE() cv::fastNlMeansDenoising(src, dst, h, block_size, search_widow_size);
/external/opencv3/modules/photo/include/opencv2/photo/
Dcuda.hpp95 CV_EXPORTS void fastNlMeansDenoising(InputArray src, OutputArray dst,
/external/opencv3/modules/java/src/
Dphoto+Photo.java452 …public static void fastNlMeansDenoising(Mat src, Mat dst, float h, int templateWindowSize, int sea… in fastNlMeansDenoising() method in Photo
461 public static void fastNlMeansDenoising(Mat src, Mat dst) in fastNlMeansDenoising() method in Photo
475 …public static void fastNlMeansDenoising(Mat src, Mat dst, MatOfFloat h, int templateWindowSize, in… in fastNlMeansDenoising() method in Photo
484 public static void fastNlMeansDenoising(Mat src, Mat dst, MatOfFloat h) in fastNlMeansDenoising() method in Photo
Dphoto.cpp1702 … cv::fastNlMeansDenoising( src, dst, (float)h, (int)templateWindowSize, (int)searchWindowSize ); in Java_org_opencv_photo_Photo_fastNlMeansDenoising_10()
1724 cv::fastNlMeansDenoising( src, dst ); in Java_org_opencv_photo_Photo_fastNlMeansDenoising_11()
1753 …cv::fastNlMeansDenoising( src, dst, h, (int)templateWindowSize, (int)searchWindowSize, (int)normTy… in Java_org_opencv_photo_Photo_fastNlMeansDenoising_12()
1778 cv::fastNlMeansDenoising( src, dst, h ); in Java_org_opencv_photo_Photo_fastNlMeansDenoising_13()
/external/opencv3/modules/photo/include/opencv2/
Dphoto.hpp138 CV_EXPORTS_W void fastNlMeansDenoising( InputArray src, OutputArray dst, float h = 3,
165 CV_EXPORTS_W void fastNlMeansDenoising( InputArray src, OutputArray dst,
/external/opencv3/modules/photo/perf/opencl/
Dperf_denoising.cpp27 cv::fastNlMeansDenoising(original, result, 10); in OCL_PERF_TEST()
/external/opencv3/doc/py_tutorials/py_photo/py_non_local_means/
Dpy_non_local_means.markdown10 - You will see different functions like **cv2.fastNlMeansDenoising()**,
55 -# **cv2.fastNlMeansDenoising()** - works with a single grayscale images
/external/opencv3/modules/photo/src/opencl/
Dnlmeans.cl257 __kernel void fastNlMeansDenoising(__global const uchar * src, int src_step, int src_offset,