C# 클래스 Accord.MachineLearning.Geometry.RansacCircle

Robust circle estimator with RANSAC.
파일 보기 프로젝트 열기: accord-net/framework

공개 메소드들

메소드 설명
Estimate ( IEnumerable points ) : Circle

Produces a robust estimation of the circle passing through the given (noisy) points.

Estimate ( IEnumerable points ) : Circle

Produces a robust estimation of the circle passing through the given (noisy) points.

Estimate ( IntPoint points ) : Circle

Produces a robust estimation of the circle passing through the given (noisy) points.

Estimate ( Point points ) : Circle

Produces a robust estimation of the circle passing through the given (noisy) points.

RansacCircle ( double threshold, double probability ) : System

Creates a new RANSAC 2D circle estimator.

비공개 메소드들

메소드 설명
define ( int x ) : Circle
degenerate ( int indices ) : bool
distance ( Circle c, double t ) : int[]
fitting ( Point points ) : Circle

메소드 상세

Estimate() 공개 메소드

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.
리턴 Accord.Math.Geometry.Circle

Estimate() 공개 메소드

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.
리턴 Accord.Math.Geometry.Circle

Estimate() 공개 메소드

Produces a robust estimation of the circle passing through the given (noisy) points.
public Estimate ( IntPoint points ) : Circle
points AForge.IntPoint A set of (possibly noisy) points.
리턴 Accord.Math.Geometry.Circle

Estimate() 공개 메소드

Produces a robust estimation of the circle passing through the given (noisy) points.
public Estimate ( Point points ) : Circle
points Point A set of (possibly noisy) points.
리턴 Accord.Math.Geometry.Circle

RansacCircle() 공개 메소드

Creates a new RANSAC 2D circle estimator.
public RansacCircle ( double threshold, double probability ) : System
threshold double Inlier threshold.
probability double Inlier probability.
리턴 System