Added implementation and doc string

This commit is contained in:
Vighnesh Birodkar
2015-03-30 13:22:22 +05:30
parent 3e9506c6b3
commit d30ed25968
5 changed files with 308 additions and 1 deletions
+3
View File
@@ -16,6 +16,7 @@ def configuration(parent_package='', top_path=None):
cython(['_hough_transform.pyx'], working_path=base_path)
cython(['_warps_cy.pyx'], working_path=base_path)
cython(['_radon_transform.pyx'], working_path=base_path)
cython(['_seam_carving.pyx'], working_path=base_path)
config.add_extension('_hough_transform', sources=['_hough_transform.c'],
include_dirs=[get_numpy_include_dirs()])
@@ -27,6 +28,8 @@ def configuration(parent_package='', top_path=None):
sources=['_radon_transform.c'],
include_dirs=[get_numpy_include_dirs()])
config.add_extension('_seam_carving', sources=['_seam_carving.c'],
include_dirs=[get_numpy_include_dirs()])
return config
if __name__ == '__main__':