mirror of
https://github.com/wassname/scikit-image.git
synced 2026-07-09 21:02:13 +08:00
Remove print statements
This commit is contained in:
@@ -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):
|
||||
|
||||
Reference in New Issue
Block a user