From 1bcc2b418a13421ca6898208d0b24dff26567fef Mon Sep 17 00:00:00 2001 From: "K.-Michael Aye" Date: Sat, 31 Aug 2013 22:48:49 -0700 Subject: [PATCH] removing some unused selem declarations --- doc/examples/applications/plot_rank_filters.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/doc/examples/applications/plot_rank_filters.py b/doc/examples/applications/plot_rank_filters.py index ef333e32..87dad0d0 100644 --- a/doc/examples/applications/plot_rank_filters.py +++ b/doc/examples/applications/plot_rank_filters.py @@ -152,7 +152,6 @@ the central one. from skimage.filter.rank import bilateral_mean noisy_image = img_as_ubyte(data.camera()) -selem = disk(10) bilat = bilateral_mean(noisy_image.astype(np.uint16), disk(20), s0=10, s1=10) @@ -254,7 +253,6 @@ picture. from skimage.filter.rank import autolevel noisy_image = img_as_ubyte(data.camera()) -selem = disk(10) auto = autolevel(noisy_image.astype(np.uint16), disk(20))