/external/opencv3/modules/photo/test/ocl/ |
D | test_denoising.cpp | 85 …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/ |
D | denoising.cuda.cpp | 64 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()
|
D | denoising.cpp | 104 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()
|
D | fast_nlmeans_denoising_opencl.hpp | 208 fastNlMeansDenoising(l_ab[0], l_ab_denoised[0], h, templateWindowSize, searchWindowSize); in ocl_fastNlMeansDenoisingColored() 209 …fastNlMeansDenoising(l_ab[1], l_ab_denoised[1], hForColorComponents, templateWindowSize, searchWin… in ocl_fastNlMeansDenoisingColored()
|
/external/opencv3/modules/photo/test/ |
D | test_denoising.cpp | 72 fastNlMeansDenoising(original, result, 10); in TEST() 153 cv::fastNlMeansDenoising(img, filtered); in TEST() 166 fastNlMeansDenoising(src, dst, 5, 7, 21); in TEST()
|
D | test_denoising.cuda.cpp | 103 cv::cuda::fastNlMeansDenoising(GpuMat(gray), dgray, 20); in TEST()
|
/external/opencv3/modules/photo/perf/ |
D | perf_cuda.cpp | 132 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/ |
D | cuda.hpp | 95 CV_EXPORTS void fastNlMeansDenoising(InputArray src, OutputArray dst,
|
/external/opencv3/modules/java/src/ |
D | photo+Photo.java | 452 …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
|
D | photo.cpp | 1702 … 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/ |
D | photo.hpp | 138 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/ |
D | perf_denoising.cpp | 27 cv::fastNlMeansDenoising(original, result, 10); in OCL_PERF_TEST()
|
/external/opencv3/doc/py_tutorials/py_photo/py_non_local_means/ |
D | py_non_local_means.markdown | 10 - You will see different functions like **cv2.fastNlMeansDenoising()**, 55 -# **cv2.fastNlMeansDenoising()** - works with a single grayscale images
|
/external/opencv3/modules/photo/src/opencl/ |
D | nlmeans.cl | 257 __kernel void fastNlMeansDenoising(__global const uchar * src, int src_step, int src_offset,
|