From 8ad487e059fb29ea80a598bd81d05b1948f9253d Mon Sep 17 00:00:00 2001 From: Olivia Date: Sat, 29 Aug 2015 09:54:09 +0100 Subject: [PATCH] Split comment into two rows --- doc/examples/plot_marked_watershed.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/examples/plot_marked_watershed.py b/doc/examples/plot_marked_watershed.py index d94fb966..3315595a 100644 --- a/doc/examples/plot_marked_watershed.py +++ b/doc/examples/plot_marked_watershed.py @@ -32,7 +32,8 @@ image = img_as_ubyte(data.camera()) # denoise image denoised = rank.median(image, disk(2)) -# find continuous region (low gradient - where less than 10 for this image) --> markers +# find continuous region (low gradient - +# where less than 10 for this image) --> markers # disk(5) is used here to get a more smooth image markers = rank.gradient(denoised, disk(5)) < 10 markers = ndi.label(markers)[0]