diff options
author | dkazanc <dkazanc@hotmail.com> | 2018-12-04 16:13:38 +0000 |
---|---|---|
committer | dkazanc <dkazanc@hotmail.com> | 2018-12-04 16:13:38 +0000 |
commit | c9ee9ecc84881595b04f19280c93bcd587171270 (patch) | |
tree | 5074abd308c3e2f4425ee27251d242f3273f1dd4 /Wrappers/Python/conda-recipe | |
parent | 8b8dfc68fa6b70ec7eefcdfb928fb383196bec97 (diff) | |
download | regularization-c9ee9ecc84881595b04f19280c93bcd587171270.tar.gz regularization-c9ee9ecc84881595b04f19280c93bcd587171270.tar.bz2 regularization-c9ee9ecc84881595b04f19280c93bcd587171270.tar.xz regularization-c9ee9ecc84881595b04f19280c93bcd587171270.zip |
GPU version, this completes implementation of nltv #68
Diffstat (limited to 'Wrappers/Python/conda-recipe')
-rwxr-xr-x | Wrappers/Python/conda-recipe/run_test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Wrappers/Python/conda-recipe/run_test.py b/Wrappers/Python/conda-recipe/run_test.py index 6ffaca1..499ae7f 100755 --- a/Wrappers/Python/conda-recipe/run_test.py +++ b/Wrappers/Python/conda-recipe/run_test.py @@ -2,7 +2,7 @@ import unittest import numpy as np
import os
import timeit
-from ccpi.filters.regularisers import ROF_TV, FGP_TV, SB_TV, TGV, LLT_ROF, FGP_dTV, NDF, DIFF4th
+from ccpi.filters.regularisers import ROF_TV, FGP_TV, SB_TV, TGV, LLT_ROF, FGP_dTV, NDF, DIFF4th from PIL import Image
class TiffReader(object):
|