You are here: Start » AVL.NET » AVS.QuadraticRegression_RANSAC Method

AVS.QuadraticRegression_RANSAC Method

Computes quadratic regression of given point set using RANSAC.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

public static void QuadraticRegression_RANSAC
(
	IList<float> inYValues,
	float inMaxInlierDistance,
	out AvlNet.QuadraticFunction outQuadraticFunction,
	IList<float> outEstimatedValues,
	IList<float> outResiduals
)

Parameters

Name Type Range Default Description
inYValuesSystem.Collections.Generic.IList<float>Sequence of ordinates.
inMaxInlierDistancefloat<0.0f, INF>Distance from a parabola for point to be considered an inlier.
outQuadraticFunctionAvlNet.QuadraticFunctionQuadratic function approximating the given point set.
outEstimatedValuesSystem.Collections.Generic.IList<float>The result of application of the computed function to the X values.
outResidualsSystem.Collections.Generic.IList<float>Difference between an input Y value and the corresponding estimated value.

Function Overrides

See also