You are here: Start » AVL.NET » Function Reference » Computer Vision » 1D Edge Detection 3D » AVL.ScanExactlyNRidges3D_Direct

AVL.ScanExactlyNRidges3D_Direct

Locates a specified number of the strongest high or low peaks of surface height along a given path.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void ScanExactlyNRidges3D_Direct
(
	AvlNet.Surface inSurface,
	AvlNet.Path inScanPath,
	int inScanWidth,
	AvlNet.InterpolationMethod inSurfaceInterpolation,
	AvlNet.RidgeScanParams3D inRidgeScanParams,
	int inRidgeCount,
	AvlNet.Selection inRidgeSelection,
	float inMinDistance,
	INullable<List<AvlNet.SurfaceRidge1D>> outRidges
)

Parameters

Name Type Range Default Description
inSurfaceAvlNet.SurfaceInput surface.
inScanPathAvlNet.PathPath along which the scan is performed.
inScanWidthint<1, INF>5Width of the scan field in pixels. Default value: 5.
inSurfaceInterpolationAvlNet.InterpolationMethodBilinearInterpolation method used for extraction of surface points. Default value: Bilinear.
inRidgeScanParamsAvlNet.RidgeScanParams3DRidgeScanParams3D ( ProfileInterpolation: Quadratic4 SmoothingStdDev: 0.6f RidgeWidth: 5.0f RidgeMargin: 2.0f RidgeOperator: Minimum MinMagnitude: 5.0f RidgePolarity: Any )Parameters controlling the ridge extraction process. Default value: RidgeScanParams3D ( ProfileInterpolation: Quadratic4 SmoothingStdDev: 0.6f RidgeWidth: 5.0f RidgeMargin: 2.0f RidgeOperator: Minimum MinMagnitude: 5.0f RidgePolarity: Any ).
inRidgeCountint<0, INF>1Number of ridges to be found. Default value: 1.
inRidgeSelectionAvlNet.SelectionSelection mode of the resulting ridges.
inMinDistancefloat<0.0f, INF>0.0fMinimal distance between consecutive ridges. Default value: 0.0f.
outRidgesAvlNet.INullable<System.Collections.Generic.List<AvlNet.SurfaceRidge1D>>Found surface ridges. This parameter cannot be null.

Function Overrides

See also