From cc84603b1ac5429326bc80ec3115d9f3986e2e76 Mon Sep 17 00:00:00 2001 From: cgohlke Date: Wed, 12 Oct 2011 15:25:41 -0700 Subject: [PATCH] Remove print statements --- scikits/image/morphology/tests/test_watershed.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/scikits/image/morphology/tests/test_watershed.py b/scikits/image/morphology/tests/test_watershed.py index 6a3b2750..265a25e2 100644 --- a/scikits/image/morphology/tests/test_watershed.py +++ b/scikits/image/morphology/tests/test_watershed.py @@ -388,11 +388,9 @@ class TestWatershed(unittest.TestCase): before = time.clock() out = watershed(image, markers, self.eight) elapsed = time.clock() - before - print ("Fast watershed ran a megapixel image in %f seconds"%(elapsed)) before = time.clock() out = scipy.ndimage.watershed_ift(image.astype(np.uint16), markers, self.eight) elapsed = time.clock() - before - print ("Scipy watershed ran a megapixel image in %f seconds"%(elapsed)) class TestIsLocalMaximum(unittest.TestCase):