From e83873d56383835755378a23141e94bebd0922e3 Mon Sep 17 00:00:00 2001 From: emmanuelle Date: Sun, 25 Jan 2015 16:42:39 +0100 Subject: [PATCH] Removed blank lines in docstring --- skimage/restoration/_nl_means_denoising.pyx | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/skimage/restoration/_nl_means_denoising.pyx b/skimage/restoration/_nl_means_denoising.pyx index d7eac0f8..b603a6a9 100644 --- a/skimage/restoration/_nl_means_denoising.pyx +++ b/skimage/restoration/_nl_means_denoising.pyx @@ -157,13 +157,10 @@ def _nl_means_denoising_2d(image, int s=7, int d=13, float h=0.1): ---------- image: ndarray input RGB image to be denoised - s: int, optional size of patches used for denoising - d: int, optional maximal distance in pixels where to search patches used for denoising - h: float, optional cut-off distance (in gray levels). The higher h, the more permissive one is in accepting patches. @@ -244,13 +241,10 @@ def _nl_means_denoising_3d(image, int s=7, ---------- image: ndarray input data to be denoised - s: int, optional size of patches used for denoising - d: int, optional maximal distance in pixels where to search patches used for denoising - h: float, optional cut-off distance (in gray levels) """ @@ -327,13 +321,10 @@ def _fast_nl_means_denoising_2d(image, int s=7, int d=13, float h=0.1): ---------- image: ndarray 2-D input data to be denoised, grayscale or RGB - s: int, optional size of patches used for denoising - d: int, optional maximal distance in pixels where to search patches used for denoising - h: float, optional cut-off distance (in gray levels). The higher h, the more permissive one is in accepting patches. @@ -423,13 +414,10 @@ def _fast_nl_means_denoising_3d(image, int s=5, int d=7, float h=0.1): ---------- image: ndarray 3-D input data to be denoised - s: int, optional size of patches used for denoising - d: int, optional maximal distance in pixels where to search patches used for denoising - h: float, optional cut-off distance (in gray levels). The higher h, the more permissive one is in accepting patches.