From 8965d89ab142cde285f40b7f8cabfc2ea7467ae1 Mon Sep 17 00:00:00 2001 From: Andreas Schenk <andreas_schenk@hms.harvard.edu> Date: Fri, 23 Aug 2013 16:37:19 -0400 Subject: [PATCH] fixed description of Apply and ApplyIP in 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