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

Invoke.ScanMultipleEdges3D

Locates multiple changes of surface height along a given path.

Namespace:Fil
Assembly:FilNet.dll

Syntax

C++
C#
 
public static void ScanMultipleEdges3D
(
	Fil.Surface inSurface,
	Fil.ScanMap inScanMap,
	Fil.EdgeScanParams3D inEdgeScanParams,
	float inMinDistance,
	Optional<float> inMaxDistance,
	Optional<Fil.LocalBlindness> inLocalBlindness,
	Optional<int> inMaxProfileGapWidth,
	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.
inMinDistancefloat<0.0f, INF>Minimal distance between consecutive edges.
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>Maximal number of consecutive not existing profile points. Default value: ftl::NIL.
outEdgesSystem.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