From afd2208ff2eb54f6d7d07eb8975e016fa578b85f Mon Sep 17 00:00:00 2001 From: Chintak Sheth Date: Tue, 28 May 2013 11:55:26 +0530 Subject: [PATCH] Space --- skimage/morphology/convex_hull.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skimage/morphology/convex_hull.py b/skimage/morphology/convex_hull.py index 6523a669..93091b4f 100644 --- a/skimage/morphology/convex_hull.py +++ b/skimage/morphology/convex_hull.py @@ -101,7 +101,7 @@ def convex_hull_object(image, neighbors=8): convex_obj = np.zeros(image.shape, dtype=bool) convex_img = np.zeros(image.shape, dtype=bool) - for i in range(0, labeled_im.max()+1): + for i in range(0, labeled_im.max() + 1): convex_obj = convex_hull_image(labeled_im == i) convex_img = np.logical_or(convex_img, convex_obj)