diff --git a/skimage/transform/_warps.py b/skimage/transform/_warps.py index 487ed760..c2727c74 100644 --- a/skimage/transform/_warps.py +++ b/skimage/transform/_warps.py @@ -10,7 +10,7 @@ def resize(image, output_shape, order=1, mode='constant', cval=0.): Resize performs interpolation to upsample or downsample 2D arrays. For downsampling any n-dimensional array by performing arithmetic sum or - arithmetic mean, see meassure._sum_blocks.sum_blocks and + arithmetic mean, see measure._sum_blocks.sum_blocks and transform._warps.downscale_local_means respectively. @@ -97,7 +97,7 @@ def rescale(image, scale, order=1, mode='constant', cval=0.): Rescale performs interpolation to upsample or downsample 2D arrays. For downsampling any n-dimensional array by performing arithmetic sum or - arithmetic mean, see meassure._sum_blocks.sum_blocks and + arithmetic mean, see measure._sum_blocks.sum_blocks and transform._warps.downscale_local_means respectively. Parameters