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

Invoke.ProfileStripes

Finds pairs of opposite (raising and falling) edges in the input profile.

Namespace:Avl
Assembly:AvlNet.dll

Syntax

C++
C#
 
public static void ProfileStripes
(
	Avl.Profile inProfile,
	Optional<Avl.Range> inRange,
	bool inCyclic,
	Avl.StripeScanParams inStripeScanParams,
	float inMinGapWidth,
	Optional<float> inMaxGapWidth,
	Optional<Avl.LocalBlindness> inLocalBlindness,
	List<Avl.ProfileStripe> outStripes,
	Optional<List<float>> outGapWidths,
	Optional<Avl.Profile> outResponseProfile
)

Parameters

Name Type Range Default Description
inProfileAvl.ProfileInput profile.
inRangeAtl.Optional<Avl.Range>
inCyclicbool
inStripeScanParamsAvl.StripeScanParamsStripeScanParams ( ProfileInterpolation: Quadratic4 SmoothingStdDev: 0.6f MinMagnitude: 5.0f MaxInnerEdgeMagnitude: Nil StripePolarity: Bright MinStripeWidth: 0.0f MaxStripeWidth: Nil )Parameters controlling the stripe extraction process. Default value: StripeScanParams ( ProfileInterpolation: Quadratic4 SmoothingStdDev: 0.6f MinMagnitude: 5.0f MaxInnerEdgeMagnitude: Nil StripePolarity: Bright MinStripeWidth: 0.0f MaxStripeWidth: Nil ).
inMinGapWidthfloat<0.0f, INF>0.0fMinimal distance between consecutive stripes. Default value: 0.0f.
inMaxGapWidthAtl.Optional<float><0.0f, INF>Maximal distance between consecutive stripes. 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.
outStripesSystem.Collections.Generic.List<Avl.ProfileStripe>Found stripes.
outGapWidthsAtl.Optional<System.Collections.Generic.List<float>>Distances between consecutive stripes.
outResponseProfileAtl.Optional<Avl.Profile>Profile of the edge (derivative) operator response.

See also