From bec5a20441a945d80ed92968756f2715faab44f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jostein=20B=C3=B8=20Fl=C3=B8ystad?= Date: Mon, 27 May 2013 20:43:51 +0200 Subject: [PATCH] Style improvements in docstrings in transform.radon_transform --- skimage/transform/radon_transform.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/skimage/transform/radon_transform.py b/skimage/transform/radon_transform.py index f31a0263..59e6c338 100644 --- a/skimage/transform/radon_transform.py +++ b/skimage/transform/radon_transform.py @@ -31,7 +31,7 @@ def radon(image, theta=None, circle=False): Input image. theta : array_like, dtype=float, optional (default np.arange(180)) Projection angles (in degrees). - circle : boolean, optional (default False) + circle : boolean, optional Assume image is zero outside the inscribed circle, making the width of each projection (the first dimension of the sinogram) equal to ``min(image.shape)``. @@ -140,7 +140,7 @@ def iradon(radon_image, theta=None, output_size=None, interpolation : str, optional (default linear) Interpolation method used in reconstruction. Methods available: nearest, linear. - circle : boolean, optional (default False) + circle : boolean, optional Assume the reconstructed image is zero outside the inscribed circle. Also changes the default output_size to match the behaviour of ``radon`` called with ``circle=True``.