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

Invoke.FitPathToStripe_Direct

Performs a series of 1D stripe detections and creates a path from the detected points.

Namespace:Fil
Assembly:FilNet.dll

Syntax

C++
C#
 
public static void FitPathToStripe_Direct
(
	Fil.Image inImage,
	Fil.PathFittingField inFittingField,
	Optional<Fil.CoordinateSystem2D> inFittingFieldAlignment,
	Optional<float> inScanStep,
	int inScanWidth,
	Fil.SamplingParams inSamplingParams,
	Fil.StripeScanParams inStripeScanParams,
	Fil.Selection inStripeSelection,
	Optional<Fil.LocalBlindness> inLocalBlindness,
	Optional<int> inMaxInterpolationLength,
	Optional<float> inMaxDeviationDelta,
	float inMaxIncompleteness,
	Conditional<Fil.Path> outPath,
	Conditional<Fil.Path> outLeftPath,
	Conditional<Fil.Path> outRightPath,
	List<Conditional<Fil.Stripe1D>> outStripes,
	Optional<Conditional<Fil.Profile>> outDeviationProfile,
	Optional<Fil.PathFittingField> outAlignedFittingField,
	Optional<List<Fil.Profile>> outBrightnessProfiles,
	Optional<List<Fil.Profile>> outResponseProfiles,
	Diagnostic<List<Fil.Segment2D>> diagScanSegments,
	Diagnostic<List<Fil.Rectangle2D>> diagSamplingAreas
)

Parameters

Name Type Range Default Description
inImageFil.ImageImage to fit the path to.
inFittingFieldFil.PathFittingFieldPath fitting field.
inFittingFieldAlignmentFtl.Optional<Fil.CoordinateSystem2D>Adjusts the fitting field to the position of the inspected object. Default value: ftl::NIL.
inScanStepFtl.Optional<float><0.0f, INF>5.0fOptional implicit conversion of the input path to an equidistant one. Default value: 5.0f.
inScanWidthint<1, INF>5The width of each scan field (in pixels). Default value: 5.
inSamplingParamsFil.SamplingParamsParameters controlling the sampling process.
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 ).
inStripeSelectionFil.SelectionSelection mode of stripe.
inLocalBlindnessFtl.Optional<Fil.LocalBlindness>Defines conditions in which weaker edges can be detected in the vicinity of stronger edges. Default value: ftl::NIL.
inMaxInterpolationLengthFtl.Optional<int><0, INF>1Maximal number of consecutive points not found. Default value: 1.
inMaxDeviationDeltaFtl.Optional<float><0.0f, INF>Maximal difference between deviations of consecutive path points. Default value: ftl::NIL.
inMaxIncompletenessfloat<0.0f, 0.999f>0.1fMaximal fraction of stripe points not found. Default value: 0.1f.
outPathFtl.Conditional<Fil.Path>Fitted path in the middle of found stripe.
outLeftPathFtl.Conditional<Fil.Path>Fitted left path.
outRightPathFtl.Conditional<Fil.Path>Fitted right path.
outStripesSystem.Collections.Generic.List<Ftl.Conditional<Fil.Stripe1D>>Found stripes.
outDeviationProfileFtl.Optional<Ftl.Conditional<Fil.Profile>>Profile of distances between the actual path points and the corresponding reference path points.
outAlignedFittingFieldFtl.Optional<Fil.PathFittingField>Fitting field used; in the image coordinate system.
outBrightnessProfilesFtl.Optional<System.Collections.Generic.List<Fil.Profile>>Extracted image profiles.
outResponseProfilesFtl.Optional<System.Collections.Generic.List<Fil.Profile>>Profiles of the edge (derivative) operator response.
diagScanSegmentsFil.Diagnostic<System.Collections.Generic.List<Fil.Segment2D>>Segments along which the scans were run.
diagSamplingAreasFil.Diagnostic<System.Collections.Generic.List<Fil.Rectangle2D>>Areas from which the input image is sampled.

See also