summaryrefslogtreecommitdiffstats
path: root/Wrappers/Python/setup-regularizers.py.in
diff options
context:
space:
mode:
authorDaniil Kazantsev <dkazanc3@googlemail.com>2018-04-06 11:08:52 +0100
committerGitHub <noreply@github.com>2018-04-06 11:08:52 +0100
commit2e9d7e5df33c3c042b2a55ae4c9fe23b15f95019 (patch)
treeec24c21edd374246f2fa762337fa7f612d158885 /Wrappers/Python/setup-regularizers.py.in
parent1f30c56fa1de2f38ded54d3c2bd988645cdb2ea5 (diff)
parent99d84e408cdf0905996fb3632b7d006c6e6da805 (diff)
downloadregularization-2e9d7e5df33c3c042b2a55ae4c9fe23b15f95019.tar.gz
regularization-2e9d7e5df33c3c042b2a55ae4c9fe23b15f95019.tar.bz2
regularization-2e9d7e5df33c3c042b2a55ae4c9fe23b15f95019.tar.xz
regularization-2e9d7e5df33c3c042b2a55ae4c9fe23b15f95019.zip
Merge pull request #45 from vais-ral/remove_boost
Remove boost
Diffstat (limited to 'Wrappers/Python/setup-regularizers.py.in')
-rw-r--r--Wrappers/Python/setup-regularizers.py.in23
1 files changed, 1 insertions, 22 deletions
diff --git a/Wrappers/Python/setup-regularizers.py.in b/Wrappers/Python/setup-regularizers.py.in
index 8655a2e..0811372 100644
--- a/Wrappers/Python/setup-regularizers.py.in
+++ b/Wrappers/Python/setup-regularizers.py.in
@@ -34,8 +34,7 @@ extra_libraries = ['cilreg']
extra_include_dirs += [os.path.join(".." , ".." , "Core"),
os.path.join(".." , ".." , "Core", "regularizers_CPU"),
- os.path.join(".." , ".." , "Core", "regularizers_GPU" , "Diffus_HO" ) ,
- os.path.join(".." , ".." , "Core", "regularizers_GPU" , "NL_Regul" ) ,
+ os.path.join(".." , ".." , "Core", "regularizers_GPU" , "TV_FGP" ) ,
os.path.join(".." , ".." , "Core", "regularizers_GPU" , "TV_ROF" ) ,
"."]
@@ -45,26 +44,6 @@ else:
extra_compile_args = ['-fopenmp','-O2', '-funsigned-char', '-Wall', '-std=c++0x']
extra_libraries += [@EXTRA_OMP_LIB@]
-extra_libraries += ["@BOOST_PYTHON_LIB@", "@BOOST_NUMPY_LIB@"]
-
-
-setup(
- name='ccpi',
- description='CCPi Core Imaging Library - Image Regularizers',
- version=cil_version,
- cmdclass = {'build_ext': build_ext},
- ext_modules = [Extension("ccpi.filters.cpu_regularizers_boost",
- sources=[os.path.join("." , "src", "cpu_regularizers.cpp" )],
- include_dirs=extra_include_dirs,
- library_dirs=extra_library_dirs,
- extra_compile_args=extra_compile_args,
- libraries=extra_libraries ),
-
- ],
- zip_safe = False,
- packages = {'ccpi','ccpi.filters'},
-)
-
setup(
name='ccpi',
description='CCPi Core Imaging Library - Image Regularizers',