You are here: Start » AVL.NET » Invoke.ProfileEdges

Invoke.ProfileEdges

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

Namespace:Avl
Assembly:AvlNet.dll

Syntax

C++
C#
 
public static void ProfileEdges
(
	Avl.Profile inProfile,
	Optional<Avl.Range> inRange,
	bool inCyclic,
	Avl.EdgeScanParams inEdgeScanParams,
	float inMinDistance,
	Optional<float> inMaxDistance,
	Optional<Avl.LocalBlindness> inLocalBlindness,
	List<Avl.ProfileEdge> outEdges,
	Optional<List<float>> outDistances,
	Optional<Avl.Profile> outResponseProfile
)

Parameters

Name Type Range Default Description
inProfileAvl.ProfileInput profile.
inRangeAtl.Optional<Avl.Range>
inCyclicbool
inEdgeScanParamsAvl.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.
inMaxDistanceAtl.Optional<float><0.0f, INF>Maximal distance between consecutive edges. Default value: atl::NIL.
inLocalBlindnessAtl.Optional<Avl.LocalBlindness>Defines conditions in which weaker edges can be detected in the vicinity of stronger edges. Default value: atl::NIL.
outEdgesSystem.Collections.Generic.List<Avl.ProfileEdge>Found edges.
outDistancesAtl.Optional<System.Collections.Generic.List<float>>Output distances between consecutive edges.
outResponseProfileAtl.Optional<Avl.Profile>Profile of the edge (derivative) operator response.

See also