skimage 0.17.2

AttributesBackRef

Attributes

params : tuple

Ellipse model parameters in the following order :None:None:`xc`, :None:None:`yc`, a, :None:None:`b`, :None:None:`theta`.

The functional model of the ellipse is:

xt = xc + a*cos(theta)*cos(t) - b*sin(theta)*sin(t)
yt = yc + a*sin(theta)*cos(t) + b*cos(theta)*sin(t)
d = sqrt((x - xt)**2 + (y - yt)**2)

where (xt, yt) is the closest point on the ellipse to (x, y) . Thus d is the shortest distance from the point to the ellipse.

The estimator is based on a least squares minimization. The optimal solution is computed directly, no iterations are required. This leads to a simple, stable and robust fitting method.

The params attribute contains the parameters in the following order:

xc, yc, a, b, theta

Total least squares estimator for 2D ellipses.

Examples

This example is valid syntax, but we were not able to check execution
>>> xy = EllipseModel().predict_xy(np.linspace(0, 2 * np.pi, 25),
...  params=(10, 15, 4, 8, np.deg2rad(30)))
... ellipse = EllipseModel()
... ellipse.estimate(xy) True
This example is valid syntax, but we were not able to check execution
>>> np.round(ellipse.params, 2)
array([10.  , 15.  ,  4.  ,  8.  ,  0.52])
This example is valid syntax, but we were not able to check execution
>>> np.round(abs(ellipse.residuals(xy)), 5)
array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
       0., 0., 0., 0., 0., 0., 0., 0.])
See :

Back References

The following pages refer to to this document either explicitly or contain code examples using this.

skimage.measure.fit.EllipseModel

Local connectivity graph

Hover to see nodes names; edges to Self not shown, Caped at 50 nodes.

Using a canvas is more power efficient and can get hundred of nodes ; but does not allow hyperlinks; , arrows or text (beyond on hover)

SVG is more flexible but power hungry; and does not scale well to 50 + nodes.

All aboves nodes referred to, (or are referred from) current nodes; Edges from Self to other have been omitted (or all nodes would be connected to the central node "self" which is not useful). Nodes are colored by the library they belong to, and scaled with the number of references pointing them


File: /skimage/measure/fit.py#349
type: <class 'type'>
Commit: