Accord.MachineLearning.Geometry.RansacCircle.Estimate C# (CSharp) Method

Estimate() public method

Produces a robust estimation of the circle passing through the given (noisy) points.
public Estimate ( IEnumerable points ) : Circle
points IEnumerable A set of (possibly noisy) points.
return Accord.Math.Geometry.Circle
        public Circle Estimate(IEnumerable<IntPoint> points)
        {
            return Estimate(points.Select(p => new Point(p.X, p.Y)).ToArray());
        }

Same methods

RansacCircle::Estimate ( IEnumerable points ) : Circle
RansacCircle::Estimate ( IntPoint points ) : Circle
RansacCircle::Estimate ( Point points ) : Circle