Fix circular import loop

This commit is contained in:
Johannes Schönberger
2015-11-18 09:02:02 -05:00
parent 9d3a7b4ecd
commit ba3c0c02cd
+1 -1
View File
@@ -5,7 +5,6 @@ from scipy import ndimage as ndi
from ._label import label
from . import _moments
from ..morphology.convex_hull import convex_hull_image
__all__ = ['regionprops', 'perimeter']
@@ -135,6 +134,7 @@ class _RegionProperties(object):
@_cached_property
def convex_image(self):
from ..morphology.convex_hull import convex_hull_image
return convex_hull_image(self.image)
@property