summaryrefslogtreecommitdiffstats
path: root/Wrappers
diff options
context:
space:
mode:
authoralgol <dkazanc@hotmail.com>2018-04-10 15:19:25 +0100
committeralgol <dkazanc@hotmail.com>2018-04-10 15:19:25 +0100
commitabe8e9805bb02e0ec73fd97f43da9f04ce0c6992 (patch)
treedd6630634efc5e38953fc82c281cc1de4baf0994 /Wrappers
parent87bc83e76ead993de8e436572d89b1bd76f6cb06 (diff)
downloadregularization-abe8e9805bb02e0ec73fd97f43da9f04ce0c6992.tar.gz
regularization-abe8e9805bb02e0ec73fd97f43da9f04ce0c6992.tar.bz2
regularization-abe8e9805bb02e0ec73fd97f43da9f04ce0c6992.tar.xz
regularization-abe8e9805bb02e0ec73fd97f43da9f04ce0c6992.zip
test has been added 43#
Diffstat (limited to 'Wrappers')
-rw-r--r--Wrappers/Python/demos/demo_cpu_regularisers.py4
-rw-r--r--Wrappers/Python/demos/demo_gpu_regularisers.py2
-rw-r--r--Wrappers/Python/test/run_test.py19
3 files changed, 14 insertions, 11 deletions
diff --git a/Wrappers/Python/demos/demo_cpu_regularisers.py b/Wrappers/Python/demos/demo_cpu_regularisers.py
index 50beee8..929f0af 100644
--- a/Wrappers/Python/demos/demo_cpu_regularisers.py
+++ b/Wrappers/Python/demos/demo_cpu_regularisers.py
@@ -100,8 +100,8 @@ imgplot = plt.imshow(u0,cmap="gray")
pars = {'algorithm' : FGP_TV, \
'input' : u0,\
'regularisation_parameter':0.04, \
- 'number_of_iterations' :1200 ,\
- 'tolerance_constant':0.00001,\
+ 'number_of_iterations' :2000 ,\
+ 'tolerance_constant':1e-06,\
'methodTV': 0 ,\
'nonneg': 0 ,\
'printingOut': 0
diff --git a/Wrappers/Python/demos/demo_gpu_regularisers.py b/Wrappers/Python/demos/demo_gpu_regularisers.py
index 5eb7876..c496e1c 100644
--- a/Wrappers/Python/demos/demo_gpu_regularisers.py
+++ b/Wrappers/Python/demos/demo_gpu_regularisers.py
@@ -102,7 +102,7 @@ pars = {'algorithm' : FGP_TV, \
'input' : u0,\
'regularisation_parameter':0.04, \
'number_of_iterations' :1200 ,\
- 'tolerance_constant':0.00001,\
+ 'tolerance_constant':1e-06,\
'methodTV': 0 ,\
'nonneg': 0 ,\
'printingOut': 0
diff --git a/Wrappers/Python/test/run_test.py b/Wrappers/Python/test/run_test.py
index 883cdf2..19af0ec 100644
--- a/Wrappers/Python/test/run_test.py
+++ b/Wrappers/Python/test/run_test.py
@@ -2,9 +2,12 @@ import unittest
import numpy as np
import os
from ccpi.filters.regularisers import ROF_TV, FGP_TV
-from qualitymetrics import rmse
import matplotlib.pyplot as plt
+def rmse(im1, im2):
+ rmse = np.sqrt(np.sum((im1 - im2) ** 2) / float(im1.size))
+ return rmse
+
class TestRegularisers(unittest.TestCase):
def __init__(self):
filename = os.path.join(".." , ".." , ".." , "data" ,"lena_gray_512.tif")
@@ -16,9 +19,9 @@ class TestRegularisers(unittest.TestCase):
Im = Im/255
self.u0 = Im
self.Im = Im
- self.tolerance = 0.00001
- self.rms_rof_exp = 0.01 #expected value for ROF model
- self.rms_fgp_exp = 0.01 #expected value for FGP model
+ self.tolerance = 1e-05
+ self.rms_rof_exp = 0.006812507 #expected value for ROF model
+ self.rms_fgp_exp = 0.019152347 #expected value for FGP model
# set parameters for ROF-TV
self.pars_rof_tv = {'algorithm': ROF_TV, \
@@ -32,7 +35,7 @@ class TestRegularisers(unittest.TestCase):
'input' : self.u0,\
'regularisation_parameter':0.04, \
'number_of_iterations' :50 ,\
- 'tolerance_constant':0.00001,\
+ 'tolerance_constant':1e-08,\
'methodTV': 0 ,\
'nonneg': 0 ,\
'printingOut': 0
@@ -97,6 +100,6 @@ class TestRegularisers(unittest.TestCase):
else:
print ("test PASSED")
# now compare obtained rms with the expected value
- self.assertLess(...)
-if __name__ == "__main__":
- unittest.main() \ No newline at end of file
+ #self.assertLess(...)
+#if __name__ == '__main__':
+ #unittest.main() \ No newline at end of file