You are here: Start » FIL.NET » FIS.ProfileStripes Method

FIS.ProfileStripes Method

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

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

public static void ProfileStripes
(
	FilNet.Profile inProfile,
	FilNet.Range? inRange,
	bool inCyclic,
	FilNet.StripeScanParams inStripeScanParams,
	float inMinGapWidth,
	float? inMaxGapWidth,
	FilNet.LocalBlindness? inLocalBlindness,
	IList<FilNet.ProfileStripe> outStripes,
	NullableRef<List<float>> outGapWidths,
	NullableRef<FilNet.Profile> outResponseProfile
)

Parameters

Name Type Range Default Description
inProfileFilNet.ProfileInput profile.
inRangeFilNet.Range?
inCyclicbool
inStripeScanParamsFilNet.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.
inMaxGapWidthfloat?<0.0f, INF>Maximal distance between consecutive stripes. Default value: ftl::NIL.
inLocalBlindnessFilNet.LocalBlindness?Defines conditions in which weaker edges can be detected in the vicinity of stronger edges. Default value: ftl::NIL.
outStripesSystem.Collections.Generic.IList<FilNet.ProfileStripe>Found stripes.
outGapWidthsFilNet.NullableRef<System.Collections.Generic.List<float>>Distances between consecutive stripes. Can be null to skip this parameter calculation.
outResponseProfileFilNet.NullableRef<FilNet.Profile>Profile of the edge (derivative) operator response. Can be null to skip this parameter calculation.

Function Overrides

See also