From df1e2061a1b470379b198de1c3a5cb2a1be48417 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20Sch=C3=B6nberger?= Date: Thu, 9 Oct 2014 16:32:50 -0400 Subject: [PATCH] Use correct rank filter replacement function --- skimage/morphology/grey.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skimage/morphology/grey.py b/skimage/morphology/grey.py index 6c901b4a..cd3dcaa8 100644 --- a/skimage/morphology/grey.py +++ b/skimage/morphology/grey.py @@ -100,7 +100,7 @@ def dilation(image, selem=None, out=None, shift_x=False, shift_y=False): Notes ----- For `uint8` (and `uint16` up to a certain bit-depth) data, the lower - algorithm complexity makes the `skimage.filter.rank.minimum` function more + algorithm complexity makes the `skimage.filter.rank.maximum` function more efficient for larger images and structuring elements. Examples