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

FIS.ScanMultipleStripes Method

Locates multiple pairs of edges across a given path.

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

public static void ScanMultipleStripes
(
	FilNet.Image inImage,
	FilNet.ScanMap inScanMap,
	FilNet.StripeScanParams inStripeScanParams,
	float inMinGapWidth,
	float? inMaxGapWidth,
	FilNet.LocalBlindness? inLocalBlindness,
	IList<FilNet.Stripe1D> outStripes,
	IList<FilNet.Gap1D> outGaps,
	NullableRef<FilNet.Profile> outBrightnessProfile,
	NullableRef<FilNet.Profile> outResponseProfile
)

Parameters

Name Type Range Default Description
inImageFilNet.ImageInput image.
inScanMapFilNet.ScanMapData precomputed with CreateScanMap.
inStripeScanParamsFilNet.StripeScanParamsStripeScanParams ( ProfileInterpolation: Quadratic4 SmoothingStdDev: 0.6f MinMagnitude: 5.0f MaxInnerEdgeMagnitude: Nil StripePolarity: Dark 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: Dark 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.Stripe1D>Found stripes.
outGapsSystem.Collections.Generic.IList<FilNet.Gap1D>Distances between consecutive stripes.
outBrightnessProfileFilNet.NullableRef<FilNet.Profile>Extracted image profile. 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