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

Invoke.FitSegmentToPoints3D

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

Namespace:Fil
Assembly:FilNet.dll

Syntax

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

Parameters

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

See also