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/ccpi | |
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/ccpi')
-rw-r--r-- | Wrappers/Python/ccpi/filters/regularisers.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/Wrappers/Python/ccpi/filters/regularisers.py b/Wrappers/Python/ccpi/filters/regularisers.py index bf7e23c..0a65590 100644 --- a/Wrappers/Python/ccpi/filters/regularisers.py +++ b/Wrappers/Python/ccpi/filters/regularisers.py @@ -4,7 +4,7 @@ script which assigns a proper device core function based on a flag ('cpu' or 'gp from ccpi.filters.cpu_regularisers import TV_ROF_CPU, TV_FGP_CPU, TV_SB_CPU, dTV_FGP_CPU, TNV_CPU, NDF_CPU, Diff4th_CPU, TGV_CPU, LLT_ROF_CPU, PATCHSEL_CPU, NLTV_CPU try: - from ccpi.filters.gpu_regularisers import TV_ROF_GPU, TV_FGP_GPU, TV_SB_GPU, dTV_FGP_GPU, NDF_GPU, Diff4th_GPU, TGV_GPU, LLT_ROF_GPU + from ccpi.filters.gpu_regularisers import TV_ROF_GPU, TV_FGP_GPU, TV_SB_GPU, dTV_FGP_GPU, NDF_GPU, Diff4th_GPU, TGV_GPU, LLT_ROF_GPU, PATCHSEL_GPU gpu_enabled = True except ImportError: gpu_enabled = False @@ -153,7 +153,11 @@ def PatchSelect(inputData, searchwindow, patchwindow, neighbours, edge_parameter neighbours, edge_parameter) elif device == 'gpu' and gpu_enabled: - return 1 + return PATCHSEL_GPU(inputData, + searchwindow, + patchwindow, + neighbours, + edge_parameter) else: if not gpu_enabled and device == 'gpu': raise ValueError ('GPU is not available') |