Change default neighbors to None

This commit is contained in:
Steven Silvester
2014-12-24 05:57:37 -06:00
parent 3829401e9f
commit cb2745cfdf
+1 -1
View File
@@ -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)