mirror of
https://github.com/wassname/scikit-image.git
synced 2026-07-05 21:07:18 +08:00
Change default neighbors to None
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
from ._ccomp import label as _label
|
||||
|
||||
def label(input, neighbors=8, background=None, return_num=False,
|
||||
def label(input, neighbors=None, background=None, return_num=False,
|
||||
connectivity=None):
|
||||
return _label(input, neighbors, background, return_num, connectivity)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user