Add __all__ to measure package

This commit is contained in:
Johannes Schönberger
2013-04-27 17:28:08 +02:00
parent 3e278fadb4
commit 9d4647dca6
+8 -1
View File
@@ -1,4 +1,11 @@
from .find_contours import find_contours
from ._regionprops import regionprops, perimeter
from ._structural_similarity import structural_similarity
from ._polygon import approximate_polygon, subdivide_polygon
from ._polygon import approximate_polygon, subdivide_polygon
__all__ = ['find_contours',
'regionprops',
'perimeter',
'structural_similarity',
'approximate_polygon',
'subdivide_polygon']