From 2a0f29011f1614ce97e22ea3edd91ce53c2b6c63 Mon Sep 17 00:00:00 2001 From: David PS Date: Fri, 28 Aug 2015 22:30:21 +0100 Subject: [PATCH] fixed another typo --- doc/examples/plot_marked_watershed.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/examples/plot_marked_watershed.py b/doc/examples/plot_marked_watershed.py index d94fb966..dafa311e 100644 --- a/doc/examples/plot_marked_watershed.py +++ b/doc/examples/plot_marked_watershed.py @@ -33,7 +33,7 @@ image = img_as_ubyte(data.camera()) denoised = rank.median(image, disk(2)) # find continuous region (low gradient - where less than 10 for this image) --> markers -# disk(5) is used here to get a more smooth image +# disk(5) is used here to get a smoother image markers = rank.gradient(denoised, disk(5)) < 10 markers = ndi.label(markers)[0]