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

Invoke.ScanExactlyNEdges3D

Locates a specified number of the strongest changes of surface height along a given path.

Namespace:Avl
Assembly:AvlNet.dll

Syntax

C++
C#
 
public static void ScanExactlyNEdges3D
(
	Avl.Surface inSurface,
	Avl.ScanMap inScanMap,
	Avl.EdgeScanParams3D inEdgeScanParams,
	int inEdgeCount,
	Avl.Selection inEdgeSelection,
	float inMinDistance,
	Optional<float> inMaxDistance,
	Optional<Avl.LocalBlindness> inLocalBlindness,
	Optional<int> inMaxProfileGapWidth,
	Conditional<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.
inEdgeCountint<0, INF>1Number of surface edges to be found. Default value: 1.
inEdgeSelectionAvl.Selectionavl::Selection::BestSelection mode of the resulting edges. Default value: avl::Selection::Best.
inMinDistancefloat<0.0f, INF>0.0fMinimal distance between consecutive edges. Default value: 0.0f.
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>1Maximal number of consecutive not existing profile points. Default value: 1.
outEdgesAtl.Conditional<System.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