mirror of
https://github.com/wassname/scikit-image.git
synced 2026-07-04 23:55:05 +08:00
fixed another typo
This commit is contained in:
@@ -33,7 +33,7 @@ image = img_as_ubyte(data.camera())
|
||||
denoised = rank.median(image, disk(2))
|
||||
|
||||
# find continuous region (low gradient - where less than 10 for this image) --> markers
|
||||
# disk(5) is used here to get a more smooth image
|
||||
# disk(5) is used here to get a smoother image
|
||||
markers = rank.gradient(denoised, disk(5)) < 10
|
||||
markers = ndi.label(markers)[0]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user