You are here: Start » AVL.NET » Function Reference » Computer Vision » 1D Edge Detection 3D » AVL.ScanMultipleStripes3D

AVL.ScanMultipleStripes3D

Locates multiple pairs of changes of surface height along a given path.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void ScanMultipleStripes3D
(
	AvlNet.Surface inSurface,
	AvlNet.ScanMap inScanMap,
	AvlNet.StripeScanParams3D inStripeScanParams,
	float inMinGapWidth,
	float? inMaxGapWidth,
	AvlNet.LocalBlindness? inLocalBlindness,
	int? inMaxProfileGapWidth,
	IList<AvlNet.SurfaceStripe1D> outStripes,
	AvlNet.Profile diagHeightProfile,
	AvlNet.Profile diagResponseProfile
)

Parameters

Name Type Range Default Description
inSurfaceAvlNet.SurfaceInput surface.
inScanMapAvlNet.ScanMapData precomputed with CreateSurfaceScanMap.
inStripeScanParamsAvlNet.StripeScanParams3DParameters controlling the surface stripe extraction process.
inMinGapWidthfloat<0.0f, INF>0.0fMinimal distance between consecutive surface stripes. Default value: 0.0f.
inMaxGapWidthfloat?<0.0f, INF>Maximal distance between consecutive surface stripes. Default value: atl::NIL.
inLocalBlindnessAvlNet.LocalBlindness?Defines conditions in which weaker edges can be detected in the vicinity of stronger edges. Default value: atl::NIL.
inMaxProfileGapWidthint?<0, INF>1Maximal number of consecutive not existing profile points. Default value: 1.
outStripesSystem.Collections.Generic.IList<AvlNet.SurfaceStripe1D>Found surface stripes.
diagHeightProfileAvlNet.ProfileExtracted surface height profile.
diagResponseProfileAvlNet.ProfileProfile of the edge (derivative) operator response.

Function Overrides

See also