mirror of
https://github.com/wassname/scikit-image.git
synced 2026-07-20 12:40:31 +08:00
7 lines
164 B
Python
7 lines
164 B
Python
__all__ = ['label']
|
|
|
|
from ..measure._ccomp import label as _label
|
|
from skimage._shared.utils import deprecated
|
|
|
|
label = deprecated('skimage.measure.label')(_label)
|