mirror of
https://github.com/wassname/scikit-image.git
synced 2026-06-29 03:37:34 +08:00
7 lines
195 B
Python
7 lines
195 B
Python
from ._ccomp import label as _label
|
|
|
|
def label(input, neighbors=8, background=None, return_num=False):
|
|
return _label(input, neighbors, background, return_num)
|
|
|
|
label.__doc__ = _label.__doc__
|