diff --git a/skimage/morphology/grey.py b/skimage/morphology/grey.py index 4dfdbc3d..1f1c45d4 100644 --- a/skimage/morphology/grey.py +++ b/skimage/morphology/grey.py @@ -37,8 +37,9 @@ def erosion(image, selem=None, out=None, shift_x=False, shift_y=False): Notes ----- - The lower algorithm complexity makes the `skimage.filter.rank.minimum` - more efficient for larger images and structuring elements. + For `uint8` and `uint16` data, the lower algorithm complexity makes the + `skimage.filter.rank.minimum` function more efficient for larger images + and structuring elements. Examples -------- @@ -97,8 +98,9 @@ def dilation(image, selem=None, out=None, shift_x=False, shift_y=False): Notes ----- - The lower algorithm complexity makes the `skimage.filter.rank.maximum` - more efficient for larger images and structuring elements. + For `uint8` and `uint16` data, the lower algorithm complexity makes the + `skimage.filter.rank.maximum` function more efficient for larger images + and structuring elements. Examples --------