summaryrefslogtreecommitdiffstats
path: root/Wrappers/Python/setup-regularisers.py.in
diff options
context:
space:
mode:
authorDaniil Kazantsev <dkazanc3@googlemail.com>2018-05-02 15:59:06 +0100
committerGitHub <noreply@github.com>2018-05-02 15:59:06 +0100
commit885c2879cec3aef13b66604e899fd454aa53c65a (patch)
treea511d59b8ed9fff1faeddba83ad00b0f070806e4 /Wrappers/Python/setup-regularisers.py.in
parent307d0459f6f22ff07e9d0b8d4090a27ba91cddd0 (diff)
parent6e285c109938a43b5f8a84b7a48afaeb6b058c90 (diff)
downloadregularization-885c2879cec3aef13b66604e899fd454aa53c65a.tar.gz
regularization-885c2879cec3aef13b66604e899fd454aa53c65a.tar.bz2
regularization-885c2879cec3aef13b66604e899fd454aa53c65a.tar.xz
regularization-885c2879cec3aef13b66604e899fd454aa53c65a.zip
Merge pull request #53 from vais-ral/inpaint_Heat
Inpainting methods added to the toolkit
Diffstat (limited to 'Wrappers/Python/setup-regularisers.py.in')
-rw-r--r--Wrappers/Python/setup-regularisers.py.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/Wrappers/Python/setup-regularisers.py.in b/Wrappers/Python/setup-regularisers.py.in
index b900efe..f55c6fe 100644
--- a/Wrappers/Python/setup-regularisers.py.in
+++ b/Wrappers/Python/setup-regularisers.py.in
@@ -34,6 +34,7 @@ extra_libraries = ['cilreg']
extra_include_dirs += [os.path.join(".." , ".." , "Core"),
os.path.join(".." , ".." , "Core", "regularisers_CPU"),
+ os.path.join(".." , ".." , "Core", "inpainters_CPU"),
os.path.join(".." , ".." , "Core", "regularisers_GPU" , "TV_FGP" ) ,
os.path.join(".." , ".." , "Core", "regularisers_GPU" , "TV_ROF" ) ,
os.path.join(".." , ".." , "Core", "regularisers_GPU" , "TV_SB" ) ,
@@ -52,7 +53,7 @@ setup(
description='CCPi Core Imaging Library - Image regularisers',
version=cil_version,
cmdclass = {'build_ext': build_ext},
- ext_modules = [Extension("ccpi.filters.cpu_regularisers_cython",
+ ext_modules = [Extension("ccpi.filters.cpu_regularisers",
sources=[os.path.join("." , "src", "cpu_regularisers.pyx" ) ],
include_dirs=extra_include_dirs,
library_dirs=extra_library_dirs,