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

Invoke.ScanExactlyNEdges3D

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

Namespace:Fil
Assembly:FilNet.dll

Syntax

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

Parameters

Name Type Range Default Description
inSurfaceFil.SurfaceInput surface.
inScanMapFil.ScanMapData precomputed with CreateSurfaceScanMap.
inEdgeScanParamsFil.EdgeScanParams3DParameters controlling the surface edge extraction process.
inEdgeCountint<0, INF>1Number of surface edges to be found. Default value: 1.
inEdgeSelectionFil.Selectionfil::Selection::BestSelection mode of the resulting edges. Default value: fil::Selection::Best.
inMinDistancefloat<0.0f, INF>0.0fMinimal distance between consecutive edges. Default value: 0.0f.
inMaxDistanceFtl.Optional<float><0.0f, INF>Maximal distance between consecutive edges. Default value: ftl::NIL.
inLocalBlindnessFtl.Optional<Fil.LocalBlindness>Defines conditions in which weaker edges can be detected in the vicinity of stronger edges. Default value: ftl::NIL.
inMaxProfileGapWidthFtl.Optional<int><0, INF>1Maximal number of consecutive not existing profile points. Default value: 1.
outEdgesFtl.Conditional<System.Collections.Generic.List<Fil.SurfaceEdge1D>>Found surface edges.
outHeightProfileFtl.Optional<Fil.Profile>Extracted surface height profile.
outResponseProfileFtl.Optional<Fil.Profile>Profile of the edge (derivative) operator response.

See also