You are here: Start » FIL.NET » FIS.LinearRegression_RANSAC Method
FIS.LinearRegression_RANSAC Method
Computes linear regression of given point set using RANSAC.
Namespace: | FilNet |
---|---|
Assembly: | FIL.NET.dll |
Syntax
public static void LinearRegression_RANSAC ( IList<float> inYValues, float inMaxInlierDistance, out FilNet.LinearFunction outLinearFunction, IList<float> outEstimatedValues, IList<float> outResiduals )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inYValues | System.Collections.Generic.IList<float> | Sequence of ordinates. | ||
![]() | inMaxInlierDistance | float | Distance from a line for point to be considered an inlier. | ||
![]() | outLinearFunction | FilNet.LinearFunction | Linear function approximating the given point set. | ||
![]() | outEstimatedValues | System.Collections.Generic.IList<float> | The result of application of the computed function to the X values. | ||
![]() | outResiduals | System.Collections.Generic.IList<float> | Difference between an input Y value and the corresponding estimated value. |