Remove print statements

This commit is contained in:
cgohlke
2011-10-12 15:25:41 -07:00
parent a609bd6416
commit cc84603b1a
@@ -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):