Accord.MachineLearning.Geometry.RansacPlane.RansacPlane C# (CSharp) Метод

RansacPlane() публичный Метод

Creates a new RANSAC 3D plane estimator.
public RansacPlane ( double threshold, double probability ) : System
threshold double Inlier threshold.
probability double Inlier probability.
Результат System
        public RansacPlane(double threshold, double probability)
        {
            // Create a new RANSAC with the selected threshold
            ransac = new RANSAC<Plane>(3, threshold, probability);

            // Set RANSAC functions
            ransac.Fitting = define;
            ransac.Distances = distance;
            ransac.Degenerate = degenerate;
        }