From 971e7beec5a906c22f11469cb1afc0e2c2d322cc Mon Sep 17 00:00:00 2001 From: Ankit Agrawal Date: Fri, 5 Jul 2013 11:10:12 +0800 Subject: [PATCH] Correcting typos --- skimage/transform/_warps.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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