mirror of
https://github.com/wassname/scikit-image.git
synced 2026-06-28 19:33:19 +08:00
8 lines
239 B
Python
8 lines
239 B
Python
from ._ccomp import label as _label
|
|
|
|
def label(input, neighbors=None, background=None, return_num=False,
|
|
connectivity=None):
|
|
return _label(input, neighbors, background, return_num, connectivity)
|
|
|
|
label.__doc__ = _label.__doc__
|