Add imports of fit to subpackage

This commit is contained in:
Johannes Schönberger
2013-02-28 19:39:04 +01:00
committed by Johannes Schönberger
parent e337c7e1e5
commit d45fb029dc
+7 -1
View File
@@ -2,10 +2,16 @@ 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 .fit import LineModel, CircleModel, EllipseModel, ransac
__all__ = ['find_contours',
'regionprops',
'perimeter',
'structural_similarity',
'approximate_polygon',
'subdivide_polygon']
'subdivide_polygon',
'LineModel',
'CircleModel',
'EllipseModel',
'ransac']