From a0044fbebd401e233b2a228cb768e461be635d6e Mon Sep 17 00:00:00 2001 From: Andreas Schenk <andreas_schenk@hms.harvard.edu> Date: Fri, 12 Jul 2013 11:31:15 -0400 Subject: [PATCH] small fix in the img.alg documentation --- modules/img/alg/doc/alg.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/img/alg/doc/alg.rst b/modules/img/alg/doc/alg.rst index e9f5fb0f2..5e38b19b5 100644 --- a/modules/img/alg/doc/alg.rst +++ b/modules/img/alg/doc/alg.rst @@ -14,8 +14,8 @@ methods are used to handle the algorithm parameters. Applying an algorithm to an image is then conceptually a two-step process. First, an instance of an algorithm class is created, yielding an algorithm object. In a second step, the algorithm object is applied to an image. An algorithm can be applied in-place -(using the :meth:`~ost.img.ImageHandle.Apply` method), modifying the image, or -out-of-place, (using :meth:`~ost.img.ImageHandle.ApplyIP` ), leaving the original image +(using the :meth:`~ost.img.ImageHandle.ApplyIP` method), modifying the image, or +out-of-place, (using :meth:`~ost.img.ImageHandle.Apply` ), leaving the original image untouched, and returning the result as a new image. Here is an example. All the algorithms used in the following are described in the :ref:`algorithms` section. -- GitLab