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,
	AvlNet.Range? inRange,
	bool inCyclic,
	AvlNet.EdgeScanParams inEdgeScanParams,
	float inMinDistance,
	float? inMaxDistance,
	AvlNet.LocalBlindness? inLocalBlindness,
	IList<AvlNet.ProfileEdge> outEdges,
	IList<float> outDistances,
	AvlNet.Profile outResponseProfile
)

Parameters

Name Type Range Default Description
inProfileAvlNet.ProfileInput profile.
inRangeAvlNet.Range?
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.
inMaxDistancefloat?<0.0f, INF>Maximal distance between consecutive edges. Default value: atl::NIL.
inLocalBlindnessAvlNet.LocalBlindness?Defines conditions in which weaker edges can be detected in the vicinity of stronger edges. Default value: atl::NIL.
outEdgesSystem.Collections.Generic.IList<AvlNet.ProfileEdge>Found edges.
outDistancesSystem.Collections.Generic.IList<float>Output distances between consecutive edges.
outResponseProfileAvlNet.ProfileProfile of the edge (derivative) operator response.

Errors

List of possible exceptions:

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

Function Overrides

See also