You are here: Start » AVL.NET » Function Reference » Profile » Profile Features » AVL.ProfileEdges

AVL.ProfileEdges

Finds the locations at which the profile values raise or fall quickly.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void ProfileEdges
(
	AvlNet.Profile inProfile,
	bool inCyclic,
	AvlNet.EdgeScanParams inEdgeScanParams,
	float inMinDistance,
	IList<AvlNet.ProfileEdge> outEdges
)

Parameters

Name Type Range Default Description
inProfileAvlNet.ProfileInput profile.
inCyclicbool
inEdgeScanParamsAvlNet.EdgeScanParamsEdgeScanParams ( ProfileInterpolation: Quadratic4 SmoothingStdDev: 0.6f MinMagnitude: 5.0f EdgeTransition: BrightToDark )Parameters controlling the edge extraction process. Default value: EdgeScanParams ( ProfileInterpolation: Quadratic4 SmoothingStdDev: 0.6f MinMagnitude: 5.0f EdgeTransition: BrightToDark ).
inMinDistancefloat<0.0f, INF>0.0fMinimal distance between consecutive edges. Default value: 0.0f.
outEdgesSystem.Collections.Generic.IList<AvlNet.ProfileEdge>Found edges.

Errors

List of possible exceptions:

Error type Description
DomainError Range exceeds the input profile in ProfileEdges.

Function Overrides

See also