diff options
author | Daniil Kazantsev <dkazanc@hotmail.com> | 2018-02-25 17:54:03 +0000 |
---|---|---|
committer | Daniil Kazantsev <dkazanc@hotmail.com> | 2018-02-25 17:54:03 +0000 |
commit | 0ebf1f949b7150692e356627c455e905b642af97 (patch) | |
tree | 9e05617567490e7d4d179858c98aa87c6479d1f6 /Wrappers/Python/demo | |
parent | d4d12945f5396b10259fdeeb2b09f99b0e2c6afd (diff) | |
download | regularization-0ebf1f949b7150692e356627c455e905b642af97.tar.gz regularization-0ebf1f949b7150692e356627c455e905b642af97.tar.bz2 regularization-0ebf1f949b7150692e356627c455e905b642af97.tar.xz regularization-0ebf1f949b7150692e356627c455e905b642af97.zip |
updates to CPU/GPU core for ROF and demos
Diffstat (limited to 'Wrappers/Python/demo')
-rw-r--r-- | Wrappers/Python/demo/test_cpu_regularizers.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Wrappers/Python/demo/test_cpu_regularizers.py b/Wrappers/Python/demo/test_cpu_regularizers.py index d147b85..b08c418 100644 --- a/Wrappers/Python/demo/test_cpu_regularizers.py +++ b/Wrappers/Python/demo/test_cpu_regularizers.py @@ -284,9 +284,9 @@ start_time = timeit.default_timer() pars = {'algorithm': ROF_TV , \ 'input' : u0,\ - 'regularization_parameter':25,\ - 'marching_step': 0.001,\ - 'number_of_iterations': 350 + 'regularization_parameter':0.04,\ + 'marching_step': 0.0025,\ + 'number_of_iterations': 300 } rof = ROF_TV(pars['input'], pars['number_of_iterations'], |