DOC: no import numpy in doc

This commit is contained in:
François Boulogne
2013-10-02 18:14:21 +02:00
parent 2e2a82ab30
commit 628d484942
-2
View File
@@ -20,7 +20,6 @@ def join_segmentations(s1, s2):
Examples
--------
>>> import numpy as np
>>> from skimage.segmentation import join_segmentations
>>> s1 = np.array([[0, 0, 1, 1],
... [0, 2, 1, 1],
@@ -78,7 +77,6 @@ def relabel_from_one(label_field):
Examples
--------
>>> import numpy as np
>>> from skimage.segmentation import relabel_from_one
>>> label_field = array([1, 1, 5, 5, 8, 99, 42])
>>> relab, fw, inv = relabel_from_one(label_field)