Class CircleFitKasaA
- All Implemented Interfaces:
CircleFitAlgebraic
This is an implementation of the algebraic circle fitting algorithm described in [1]. This algorithm is among the oldest and simplest algebraic circle fitting methods. This implementation closely follows the original paper. The only difference is the use of a numerical solver (as compared to using the inverse of matrix M) for solving the 3x3 linear system.
Its performance is sufficient if points are sampled over a large part of the circle. It shows significant bias (estimated circles are too small) when sample points are confined to a small segment of the circle. It fails when matrix M becomes singular. Fits to exactly 3 (non-collinear) points are handled properly. Data centering is used to improve numerical stability (alternatively, a reference point can be specified).
[1] I. Kåsa. "A circle fitting procedure and its error analysis", IEEE Transactions on Instrumentation and Measurement 25(1), 8–14 (1976).
-
Nested Class Summary
Nested classes/interfaces inherited from interface imagingbook.common.geometry.fitting.circle.algebraic.CircleFitAlgebraic
CircleFitAlgebraic.FitType
-
Constructor Summary
ConstructorsConstructorDescriptionCircleFitKasaA
(Pnt2d[] points) Constructor.CircleFitKasaA
(Pnt2d[] points, Pnt2d xref) Constructor. -
Method Summary
Modifier and TypeMethodDescriptiondouble[]
Returns parameters (A, B, C, D) of theAlgebraicCircle
ornull
if the fit was unsuccessful.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface imagingbook.common.geometry.fitting.circle.algebraic.CircleFitAlgebraic
getAlgebraicCircle, getGeometricCircle, normalizeP
-
Constructor Details
-
CircleFitKasaA
Constructor. The centroid of the sample points is used as the reference point.- Parameters:
points
- sample points
-
CircleFitKasaA
Constructor. The centroid of the sample points is used as the reference point for data centering ifnull
is passed forxref
.- Parameters:
points
- sample pointsxref
- reference point ornull
-
-
Method Details
-
getParameters
Description copied from interface:CircleFitAlgebraic
Returns parameters (A, B, C, D) of theAlgebraicCircle
ornull
if the fit was unsuccessful. Parameters are not normalized.- Specified by:
getParameters
in interfaceCircleFitAlgebraic
- Returns:
- the algebraic circle parameters or
null
-