Removed deprecated label function from morphology module in preparation

for 0.12 release.
This commit is contained in:
emmanuelle
2015-12-23 23:24:22 +01:00
parent c5f9fffaad
commit 0b61b8f46f
2 changed files with 0 additions and 4 deletions
-2
View File
@@ -38,8 +38,6 @@ Version 0.12
------------
* Change `label` to mark background as 0, not -1, which is consistent with
SciPy's labelling.
* Remove `skimage.morphology.label` from `skimage.morphology.__init__`--it now
lives in `skimage.measure.label`.
* Remove deprecated `reverse_map` parameter of `skimage.transform.warp`
* Change deprecated `enforce_connectivity=False` on skimage.segmentation.slic
and set it to True as default
-2
View File
@@ -11,8 +11,6 @@ from .greyreconstruct import reconstruction
from .misc import remove_small_objects, remove_small_holes
from ..measure._label import label
from .._shared.utils import deprecated as _deprecated
label = _deprecated('skimage.measure.label')(label)
__all__ = ['binary_erosion',