Various regression functions. More...
Functions | |
template<class RANGE > | |
TypedRange< Circle, Point2D< double >, RANGE >::type | CircleRegression (const RANGE &points) |
Create a circle, that fits best into a collection of points. More... | |
template<class RANGE > | |
TypedRange< Ellipse, Point2D< double >, RANGE >::type | EllipseRegression (const RANGE &points) |
Create an ellipse, that fits best into a collection of points. More... | |
template<class RANGE > | |
TypedRange< Line2D, Point2D< double >, RANGE >::type | LineRegression (const RANGE &points) |
Create a line, that fits best into a collection of points. More... | |
Various regression functions.
|
inline |
Create a circle, that fits best into a collection of points.
[in] | points | Points to fit circle in. |
Any | exception derived from std::exception including CvbException. |
|
inline |
Create an ellipse, that fits best into a collection of points.
[in] | points | Points to fit the ellipse in. |
Any | exception derived from std::exception including CvbException. |
|
inline |
Create a line, that fits best into a collection of points.
[in] | points | Points to fit line in. |
Any | exception derived from std::exception including CvbException. |