Move phase unwrapping algorithms to restoration submodule

This commit is contained in:
Johannes Schönberger
2014-03-13 18:50:39 -04:00
parent c60d15f2f4
commit 107f1d607c
10 changed files with 5 additions and 16 deletions
+1 -1
View File
@@ -30,7 +30,7 @@ measure
morphology
Morphological operations, e.g. opening or skeletonization.
restoration
Deconvolution algorithms.
Restoration algorithms.
segmentation
Splitting an image into self-similar regions.
transform
-13
View File
@@ -13,19 +13,6 @@ def configuration(parent_package='', top_path=None):
config = Configuration('exposure', parent_package, top_path)
config.add_data_dir('tests')
cython(['_unwrap_1d.pyx'], working_path=base_path)
cython(['_unwrap_2d.pyx'], working_path=base_path)
cython(['_unwrap_3d.pyx'], working_path=base_path)
config.add_extension('_unwrap_1d', sources=['_unwrap_1d.c'],
include_dirs=[get_numpy_include_dirs()])
unwrap_sources_2d = ['_unwrap_2d.c', 'unwrap_2d_ljmu.c']
config.add_extension('_unwrap_2d', sources=unwrap_sources_2d,
include_dirs=[get_numpy_include_dirs()])
unwrap_sources_3d = ['_unwrap_3d.c', 'unwrap_3d_ljmu.c']
config.add_extension('_unwrap_3d', sources=unwrap_sources_3d,
include_dirs=[get_numpy_include_dirs()])
return config
if __name__ == '__main__':
+4 -2
View File
@@ -19,7 +19,9 @@ References
"""
from .deconvolution import wiener, unsupervised_wiener, richardson_lucy
from .unwrap import unwrap_phase
__all__ = ['wiener',
"unsupervised_wiener",
"richardson_lucy"]
'unsupervised_wiener',
'richardson_lucy',
'unwrap_phase']