diff options
author | algol <dkazanc@hotmail.com> | 2018-05-01 14:48:45 +0100 |
---|---|---|
committer | algol <dkazanc@hotmail.com> | 2018-05-01 14:48:45 +0100 |
commit | 033c2030a05c7aa4c832e7a5e9fd13346d05e33d (patch) | |
tree | 0685d9ec54d8565e131a979a5183900ac00e17f1 /Wrappers/Python/ccpi | |
parent | 5ef87da22a31868fd88c7f0ab4c2201e816e92ed (diff) | |
download | regularization-033c2030a05c7aa4c832e7a5e9fd13346d05e33d.tar.gz regularization-033c2030a05c7aa4c832e7a5e9fd13346d05e33d.tar.bz2 regularization-033c2030a05c7aa4c832e7a5e9fd13346d05e33d.tar.xz regularization-033c2030a05c7aa4c832e7a5e9fd13346d05e33d.zip |
some correction
Diffstat (limited to 'Wrappers/Python/ccpi')
-rw-r--r-- | Wrappers/Python/ccpi/filters/regularisers.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Wrappers/Python/ccpi/filters/regularisers.py b/Wrappers/Python/ccpi/filters/regularisers.py index e62c020..8120f72 100644 --- a/Wrappers/Python/ccpi/filters/regularisers.py +++ b/Wrappers/Python/ccpi/filters/regularisers.py @@ -113,5 +113,4 @@ def NDF(inputData, regularisation_parameter, edge_parameter, iterations, def NDF_INP(inputData, maskData, regularisation_parameter, edge_parameter, iterations, time_marching_parameter, penalty_type): return NDF_INPAINT_CPU(inputData, maskData, regularisation_parameter, - edge_parameter, iterationsNumb, - time_marching_parameter, penalty_type) + edge_parameter, iterations, time_marching_parameter, penalty_type) |