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

Invoke.FitSegmentToStripe

Performs a series of 1D stripe detections and finds a segment that best matches the detected points.

Namespace:Avl
Assembly:AvlNet.dll

Syntax

C++
C#
 
public static void FitSegmentToStripe
(
	Avl.Image inImage,
	Avl.SegmentFittingMap inFittingMap,
	Avl.StripeScanParams inStripeScanParams,
	Avl.Selection inStripeSelection,
	Optional<Avl.LocalBlindness> inLocalBlindness,
	float inMaxIncompleteness,
	Optional<Avl.LineMEstimator> inOutlierSuppression,
	Conditional<Avl.Segment2D> outSegment,
	Conditional<Avl.Segment2D> outLeftSegment,
	Conditional<Avl.Segment2D> outRightSegment,
	Optional<List<Conditional<Avl.Stripe1D>>> outStripes,
	Optional<List<Avl.Point2D>> outStripePoints,
	Optional<Conditional<Avl.Profile>> outDeviationProfile,
	Optional<List<Avl.Profile>> outBrightnessProfiles,
	Optional<List<Avl.Profile>> outResponseProfiles
)

Parameters

Name Type Range Default Description
inImageAvl.ImageImage to fit segment to.
inFittingMapAvl.SegmentFittingMapInput fitting map.
inStripeScanParamsAvl.StripeScanParamsParameters controlling the stripe extraction process.
inStripeSelectionAvl.Selectionavl::Selection::BestSelection mode of stripe. Default value: avl::Selection::Best.
inLocalBlindnessAtl.Optional<Avl.LocalBlindness>Defines conditions in which weaker edges can be detected in the vicinity of stronger edges. Default value: atl::NIL.
inMaxIncompletenessfloat<0.0f, 0.999f>0.1fMaximal fraction of stripe points not found. Default value: 0.1f.
inOutlierSuppressionAtl.Optional<Avl.LineMEstimator>Selects a method for ignoring incorrectly detected points. Default value: atl::NIL.
outSegmentAtl.Conditional<Avl.Segment2D>Fitted segment in the middle of found stripe.
outLeftSegmentAtl.Conditional<Avl.Segment2D>Fitted left segment.
outRightSegmentAtl.Conditional<Avl.Segment2D>Fitted right segment.
outStripesAtl.Optional<System.Collections.Generic.List<Atl.Conditional<Avl.Stripe1D>>>Found stripes.
outStripePointsAtl.Optional<System.Collections.Generic.List<Avl.Point2D>>Extracted points of middle segment of an image stripe.
outDeviationProfileAtl.Optional<Atl.Conditional<Avl.Profile>>Profile of distances between the actual segment points and the corresponding reference segment points.
outBrightnessProfilesAtl.Optional<System.Collections.Generic.List<Avl.Profile>>Extracted image profiles.
outResponseProfilesAtl.Optional<System.Collections.Generic.List<Avl.Profile>>Profiles of the edge (derivative) operator response.

See also