C# Класс Accord.MachineLearning.Geometry.RansacPlane

Robust plane estimator with RANSAC.
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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