mirror of
https://github.com/wassname/scikit-image.git
synced 2026-08-05 13:21:12 +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)
|