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

Invoke.MeasureObjectWidth3D

Measures the width of an object using stripe detection.

Namespace:Avl
Assembly:AvlNet.dll

Syntax

C++
C#
 
public static void MeasureObjectWidth3D
(
	Avl.Surface inSurface,
	List<Avl.ScanMap> inMeasurementMap,
	Avl.StripeScanParams3D inStripeScanParams,
	Avl.MeasureObjectMethod inMeasureMethod,
	Avl.Selection inStripeSelection,
	Optional<Avl.LocalBlindness> inLocalBlindness,
	Optional<int> inMaxProfileGapWidth,
	Optional<Avl.MEstimator> inOutlierSuppression,
	int inOutlierCount,
	Conditional<float> outObjectWidth,
	Conditional<Avl.Segment2D> outSegment1,
	Conditional<Avl.Segment2D> outSegment2,
	Optional<List<Conditional<Avl.SurfaceStripe1D>>> outStripes,
	Optional<List<Avl.Profile>> outHeightProfiles,
	Optional<List<Avl.Profile>> outResponseProfiles
)

Parameters

Name Type Range Default Description
inSurfaceAvl.SurfaceInput surface.
inMeasurementMapSystem.Collections.Generic.List<Avl.ScanMap>Input measurement map.
inStripeScanParamsAvl.StripeScanParams3DParameters controlling the object stripe extraction process.
inMeasureMethodAvl.MeasureObjectMethodMethod used to measure the object.
inStripeSelectionAvl.Selectionavl::Selection::BestSelection mode of edges of the object. 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.
inMaxProfileGapWidthAtl.Optional<int><0, INF>1Maximal number of consecutive not existing profile points. Default value: 1.
inOutlierSuppressionAtl.Optional<Avl.MEstimator>Selects a method for ignoring incorrectly detected points. Default value: atl::NIL.
inOutlierCountint<0, INF>Determines how many outlying points are rejected before the width is measured.
outObjectWidthAtl.Conditional<float>Width of the object.
outSegment1Atl.Conditional<Avl.Segment2D>First edge of the object.
outSegment2Atl.Conditional<Avl.Segment2D>Second edge of the object.
outStripesAtl.Optional<System.Collections.Generic.List<Atl.Conditional<Avl.SurfaceStripe1D>>>Detected stripes.
outHeightProfilesAtl.Optional<System.Collections.Generic.List<Avl.Profile>>Extracted surface height profiles.
outResponseProfilesAtl.Optional<System.Collections.Generic.List<Avl.Profile>>Profiles of the edge (derivative) operator response.

See also