diff options
author | Daniil Kazantsev <dkazanc3@googlemail.com> | 2018-12-04 16:18:38 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-04 16:18:38 +0000 |
commit | b6140c987875ff415b225f8800c4b582295db654 (patch) | |
tree | 5074abd308c3e2f4425ee27251d242f3273f1dd4 /Wrappers/Python/conda-recipe | |
parent | 8b8dfc68fa6b70ec7eefcdfb928fb383196bec97 (diff) | |
parent | c9ee9ecc84881595b04f19280c93bcd587171270 (diff) | |
download | regularization-b6140c987875ff415b225f8800c4b582295db654.tar.gz regularization-b6140c987875ff415b225f8800c4b582295db654.tar.bz2 regularization-b6140c987875ff415b225f8800c4b582295db654.tar.xz regularization-b6140c987875ff415b225f8800c4b582295db654.zip |
Merge pull request #77 from vais-ral/nltv_gpu
NLTV for GPU
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):
|