From 1fa4bd3d9bcd02687d068946c1c97cae538cf2ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20Sch=C3=B6nberger?= Date: Fri, 5 Oct 2012 10:05:37 +0200 Subject: [PATCH] Enhance short description of resize and rescale functions --- 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 c64998fc..71bc41b8 100644 --- a/skimage/transform/_warps.py +++ b/skimage/transform/_warps.py @@ -4,7 +4,7 @@ from ._geometric import (warp, SimilarityTransform, AffineTransform, def resize(image, output_shape, order=1, mode='constant', cval=0.): - """Resize image. + """Resize image to match a certain size. Parameters ---------- @@ -53,7 +53,7 @@ def resize(image, output_shape, order=1, mode='constant', cval=0.): def rescale(image, scale, order=1, mode='constant', cval=0.): - """Scale image. + """Scale image by a certain factor. Parameters ----------