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

Invoke.ScanMultipleEdges3D

Locates multiple changes of surface height along a given path.

Namespace:Avl
Assembly:AvlNet.dll

Syntax

C++
C#
 
public static void ScanMultipleEdges3D
(
	Avl.Surface inSurface,
	Avl.ScanMap inScanMap,
	Avl.EdgeScanParams3D inEdgeScanParams,
	float inMinDistance,
	Optional<float> inMaxDistance,
	Optional<Avl.LocalBlindness> inLocalBlindness,
	Optional<int> inMaxProfileGapWidth,
	List<Avl.SurfaceEdge1D> outEdges,
	Optional<Avl.Profile> outHeightProfile,
	Optional<Avl.Profile> outResponseProfile
)

Parameters

Name Type Range Default Description
inSurfaceAvl.SurfaceInput surface.
inScanMapAvl.ScanMapData precomputed with CreateSurfaceScanMap.
inEdgeScanParamsAvl.EdgeScanParams3DParameters controlling the surface edge extraction process.
inMinDistancefloat<0.0f, INF>Minimal distance between consecutive edges.
inMaxDistanceAtl.Optional<float><0.0f, INF>Maximal distance between consecutive edges. Default value: atl::NIL.
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>Maximal number of consecutive not existing profile points. Default value: atl::NIL.
outEdgesSystem.Collections.Generic.List<Avl.SurfaceEdge1D>Found surface edges.
outHeightProfileAtl.Optional<Avl.Profile>Extracted surface height profile.
outResponseProfileAtl.Optional<Avl.Profile>Profile of the edge (derivative) operator response.

See also