You are here: Start » AVL.NET » Invoke.FitSegmentToPoints3D

Invoke.FitSegmentToPoints3D

Approximates points in 3D with a segment using selected outliers suppression method.

Namespace:Avl
Assembly:AvlNet.dll

Syntax

C++
C#
 
public static void FitSegmentToPoints3D
(
	List<Avl.Point3D> inPoints,
	Optional<Avl.MEstimator> inOutlierSuppression,
	Conditional<Avl.Segment3D> outSegment,
	Optional<List<Avl.Point3D>> outInliers
)

Parameters

Name Type Range Default Description
inPointsSystem.Collections.Generic.List<Avl.Point3D>
inOutlierSuppressionAtl.Optional<Avl.MEstimator>TukeyDefault value: Tukey.
outSegmentAtl.Conditional<Avl.Segment3D>Fitted segment or nothing if method failed to converge.
outInliersAtl.Optional<System.Collections.Generic.List<Avl.Point3D>>Points matching the computed segment.

See also