You are here: Start » AVL.NET » AVL.FitPlaneToSurface_M

AVL.FitPlaneToSurface_M

Approximates points of the input surface with a plane using selected M-estimator for outlier suppression.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void FitPlaneToSurface_M
(
	AvlNet.Surface inSurface,
	AvlNet.Region inRoi,
	AvlNet.MEstimator inOutlierSuppression,
	float inClippingFactor,
	int inIterationCount,
	AvlNet.Plane3D? inInitialPlane,
	out AvlNet.Plane3D outPlane,
	out AvlNet.Point3D[] outInliers,
	out float[] outDistances,
	out float outSignedDistanceSum,
	out float outDistanceSum,
	out float[] outSquaredDistances,
	out float outSquaredDistanceSum
)

Parameters

Name Type Range Default Description
inSurfaceAvlNet.SurfaceInput surface.
inRoiAvlNet.RegionRegion of interest. Default value: atl::NIL, or null.
inOutlierSuppressionAvlNet.MEstimatorSelects a method for ignoring points being much different from the rest.
inClippingFactorfloat<0.675f, 6.0f>2.5fMultitude of standard deviation within which points are considered inliers. Default value: 2.5f.
inIterationCountint<0, INF>5Number of iterations of outlier suppressing algorithm. Default value: 5.
inInitialPlaneAvlNet.Plane3D?Initial approximation (if available). Default value: atl::NIL, or null.
outPlaneAvlNet.Plane3DFitted plane.
outInliersAvlNet.Point3D[]Points matching the computed plane
outDistancesfloat[]Distances of the input points to a resulting plane
outSignedDistanceSumfloatSum of signed distances of the input points to a resulting plane
outDistanceSumfloatSum of distances of the input points to a resulting plane
outSquaredDistancesfloat[]Squared distances of the input points to a resulting plane
outSquaredDistanceSumfloatSum of squared distances of the input points to a resulting plane

Errors

Error type Description
DomainError No points to fit the plane to in FitPlaneToSurface_M.

See also