Add note about supported data types in rank filter replacements

This commit is contained in:
Johannes Schönberger
2014-10-06 08:29:04 -04:00
parent 99c95f8e4f
commit fdeeaa298a
+6 -4
View File
@@ -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
--------