cython implementation of adaptive thresholding replaced with pure python version

This commit is contained in:
Johannes Schönberger
2012-04-29 17:49:33 +02:00
parent 6b8c40848b
commit a3d336f560
3 changed files with 25 additions and 42 deletions
-3
View File
@@ -12,12 +12,9 @@ def configuration(parent_package='', top_path=None):
config.add_data_dir('tests')
cython(['_ctmf.pyx'], working_path=base_path)
cython(['_thresholding.pyx'], working_path=base_path)
config.add_extension('_ctmf', sources=['_ctmf.c'],
include_dirs=[get_numpy_include_dirs()])
config.add_extension('_thresholding', sources=['_thresholding.c'],
include_dirs=[get_numpy_include_dirs()])
return config