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

Robust plane estimator with RANSAC.
파일 보기 프로젝트 열기: accord-net/framework 1 사용 예제들

공개 메소드들

메소드 설명
Estimate ( Point3 points ) : Plane

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

RansacPlane ( double threshold, double probability ) : System

Creates a new RANSAC 3D plane estimator.

비공개 메소드들

메소드 설명
define ( int x ) : Plane
degenerate ( int indices ) : bool
distance ( Plane p, double t ) : int[]
fitting ( Point3 points ) : Plane

메소드 상세

Estimate() 공개 메소드

Produces a robust estimation of the plane passing through the given (noisy) points.
public Estimate ( Point3 points ) : Plane
points Accord.Math.Point3 A set of (possibly noisy) points.
리턴 Plane

RansacPlane() 공개 메소드

Creates a new RANSAC 3D plane estimator.
public RansacPlane ( double threshold, double probability ) : System
threshold double Inlier threshold.
probability double Inlier probability.
리턴 System