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 -1
View File
@@ -12,6 +12,7 @@ from ._geometric import (warp, warp_coords, estimate_transform,
from ._warps import swirl, resize, rotate, rescale, downscale_local_mean
from .pyramids import (pyramid_reduce, pyramid_expand,
pyramid_gaussian, pyramid_laplacian)
from seam_carving import seam_carve
__all__ = ['hough_circle',
@@ -43,4 +44,5 @@ __all__ = ['hough_circle',
'pyramid_reduce',
'pyramid_expand',
'pyramid_gaussian',
'pyramid_laplacian']
'pyramid_laplacian',
'seam_carve']