You are here: Start » AVL.NET » Function Reference » Surface » Surface Features » AVL.SurfaceLocalMinima

AVL.SurfaceLocalMinima

Finds surface locations characterized by locally minimal heights.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void SurfaceLocalMinima
(
	AvlNet.Surface inSurface,
	bool inConsiderLowlands,
	float? inMinHeight,
	float? inMaxHeight,
	float inMinDistance,
	NullableRef<List<AvlNet.SurfaceExtremum>> outLocalMinima,
	NullableRef<SafeList<AvlNet.Region>> outMinimaRegions
)

Parameters

Name Type Range Default Description
inSurfaceAvlNet.Surface
inConsiderLowlandsboolConsider multi-pixel minima (lowlands) or not.
inMinHeightfloat?Minimal height of minimum to be considered. Default value: atl::NIL.
inMaxHeightfloat?Maximal height of minimum to be considered. Default value: atl::NIL.
inMinDistancefloat<0.0f, INF>Minimal distance between two found minima.
outLocalMinimaAvlNet.NullableRef<System.Collections.Generic.List<AvlNet.SurfaceExtremum>>Found local minima. Can be null to skip this parameter calculation.
outMinimaRegionsAvlNet.NullableRef<AvlNet.SafeList<AvlNet.Region>>Regions of local minima (plateaus and singletons). Can be null to skip this parameter calculation.

Function Overrides

See also