You are here: Start » FIL.NET » Invoke.ScanExactlyNStripes

Invoke.ScanExactlyNStripes

Locates a specified number of multiple pairs of opposite edges across a given path.

Namespace:Fil
Assembly:FilNet.dll

Syntax

C++
C#
 
public static void ScanExactlyNStripes
(
	Fil.Image inImage,
	Fil.ScanMap inScanMap,
	Fil.StripeScanParams inStripeScanParams,
	int inStripeCount,
	Fil.Selection inStripeSelection,
	float inMinGapWidth,
	Optional<float> inMaxGapWidth,
	Optional<Fil.LocalBlindness> inLocalBlindness,
	Conditional<List<Fil.Stripe1D>> outStripes,
	Conditional<List<Fil.Gap1D>> outGaps,
	Optional<Fil.Profile> outBrightnessProfile,
	Optional<Fil.Profile> outResponseProfile
)

Parameters

Name Type Range Default Description
inImageFil.ImageInput image.
inScanMapFil.ScanMapData precomputed with CreateScanMap.
inStripeScanParamsFil.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 ).
inStripeCountint<0, INF>1Number of stripes to be found. Default value: 1.
inStripeSelectionFil.Selectionfil::Selection::BestSelection mode of the resulting stripes. Default value: fil::Selection::Best.
inMinGapWidthfloat<0.0f, INF>0.0fMinimal distance between consecutive stripes. Default value: 0.0f.
inMaxGapWidthFtl.Optional<float><0.0f, INF>Maximal distance between consecutive stripes. Default value: ftl::NIL.
inLocalBlindnessFtl.Optional<Fil.LocalBlindness>Defines conditions in which weaker edges can be detected in the vicinity of stronger edges. Default value: ftl::NIL.
outStripesFtl.Conditional<System.Collections.Generic.List<Fil.Stripe1D>>Found stripes.
outGapsFtl.Conditional<System.Collections.Generic.List<Fil.Gap1D>>Distances between consecutive stripes.
outBrightnessProfileFtl.Optional<Fil.Profile>Extracted image profile.
outResponseProfileFtl.Optional<Fil.Profile>Profile of the edge (derivative) operator response.

See also