diff options
author | dkazanc <dkazanc@hotmail.com> | 2019-04-23 10:50:13 +0100 |
---|---|---|
committer | dkazanc <dkazanc@hotmail.com> | 2019-04-23 10:50:13 +0100 |
commit | e6a9b8c338e68d2a5ad2f62f2abba4ad4d479c80 (patch) | |
tree | 6861aaf049b21195884f89d08f113a275b4eca92 /src | |
parent | bfe917daf4a5d6ce17f1b5d2497a0f7a345f88a5 (diff) | |
download | regularization-e6a9b8c338e68d2a5ad2f62f2abba4ad4d479c80.tar.gz regularization-e6a9b8c338e68d2a5ad2f62f2abba4ad4d479c80.tar.bz2 regularization-e6a9b8c338e68d2a5ad2f62f2abba4ad4d479c80.tar.xz regularization-e6a9b8c338e68d2a5ad2f62f2abba4ad4d479c80.zip |
correction to ROF_TV
Diffstat (limited to 'src')
-rw-r--r-- | src/Core/regularisers_CPU/ROF_TV_core.c | 2 | ||||
-rw-r--r-- | src/Core/regularisers_CPU/ROF_TV_core.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/Core/regularisers_CPU/ROF_TV_core.c b/src/Core/regularisers_CPU/ROF_TV_core.c index 6951268..004a0f2 100644 --- a/src/Core/regularisers_CPU/ROF_TV_core.c +++ b/src/Core/regularisers_CPU/ROF_TV_core.c @@ -33,7 +33,7 @@ int sign(float x) { * * Input Parameters: * 1. Noisy image/volume [REQUIRED] - * 2. lambda - regularization parameter (a constant or the same size as input (1)) + * 2. lambda - regularisation parameter (a constant or the same size as the input (1)) * 3. tau - marching step for explicit scheme, ~1 is recommended [REQUIRED] * 4. Number of iterations, for explicit scheme >= 150 is recommended [REQUIRED] * 5. eplsilon: tolerance constant diff --git a/src/Core/regularisers_CPU/ROF_TV_core.h b/src/Core/regularisers_CPU/ROF_TV_core.h index 7e29ddb..b2c5869 100644 --- a/src/Core/regularisers_CPU/ROF_TV_core.h +++ b/src/Core/regularisers_CPU/ROF_TV_core.h @@ -29,7 +29,7 @@ limitations under the License. * * Input Parameters: * 1. Noisy image/volume [REQUIRED] - * 2. lambda - regularization parameter (a constant or the same size as input (1)) + * 2. lambda - regularisation parameter (a constant or the same size as the input (1)) * 3. tau - marching step for explicit scheme, ~1 is recommended [REQUIRED] * 4. Number of iterations, for explicit scheme >= 150 is recommended [REQUIRED] * 5. eplsilon: tolerance constant |