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

AVL.FitPathToStripe3D

Performs a series of 1D stripe detections and creates a path from the detected points.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void FitPathToStripe3D
(
	AvlNet.Surface inSurface,
	AvlNet.PathFittingMap inFittingMap,
	AvlNet.StripeScanParams3D inStripeScanParams,
	AvlNet.Selection inStripeSelection,
	AvlNet.LocalBlindness? inLocalBlindness,
	int? inMaxProfileGapWidth,
	int? inMaxPathInterpolationLength,
	float? inMaxDeviationDelta,
	float inMaxIncompleteness,
	out AvlNet.Point3D[] outPath,
	out AvlNet.Point3D[] outLeftPath,
	out AvlNet.Point3D[] outRightPath,
	out AvlNet.Profile[] diagHeightProfiles,
	out AvlNet.Profile[] diagResponseProfiles
)

Parameters

Name Type Range Default Description
inSurfaceAvlNet.SurfaceSurface to fit the path to.
inFittingMapAvlNet.PathFittingMapInput fitting map.
inStripeScanParamsAvlNet.StripeScanParams3DParameters controlling the stripe extraction process.
inStripeSelectionAvlNet.Selectionavl::Selection::BestSelection mode of stripe. Default value: avl::Selection::Best.
inLocalBlindnessAvlNet.LocalBlindness?Defines conditions in which weaker edges can be detected in the vicinity of stronger edges. Default value: atl::NIL, or null.
inMaxProfileGapWidthint?<0, INF>Maximal number of consecutive not existing profile points. Default value: atl::NIL, or null.
inMaxPathInterpolationLengthint?Maximal number of consecutive points not found. Default value: atl::NIL, or null.
inMaxDeviationDeltafloat?<0.0f, INF>Maximal difference between deviations of consecutive path points. Default value: atl::NIL, or null.
inMaxIncompletenessfloat<0.0f, 0.999f>0.1fMaximal fraction of stripe points not found. Default value: 0.1f.
outPathAvlNet.Point3D[]Fitted path or nothing if the fitting failed.
outLeftPathAvlNet.Point3D[]Fitted left path.
outRightPathAvlNet.Point3D[]Fitted right path.
diagHeightProfilesAvlNet.Profile[]Extracted surface height profiles.
diagResponseProfilesAvlNet.Profile[]Profiles of the edge (derivative) operator response.

Hardware Acceleration

This operation supports automatic parallelization for multicore and multiprocessor systems.

Hardware acceleration settings may be manipulated with Settings class.

See also