You are here: Start » AVL.NET » AVL.DetectLinePeak_Gauss Method

AVL.DetectLinePeak_Gauss Method

Finds line peaks on an image.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

public static void DetectLinePeak_Gauss(
	AvlNet.Image inImage,
	float inStdDev,
	float inKernelRelativeSize,
	float inThreshold,
	out System.Nullable<AvlNet.Point2D>[] outLinePeakPoints,
	out AvlNet.Profile diagLinePeakProfile
)

Parameters

Name Type Range Default Description
inImageAvlNet.ImageInput image.
inStdDevfloat<0.0f, INF>4.0fStandard deviation of the gaussian kernel. Default value: 4.0f.
inKernelRelativeSizefloat<0.0f, 3.0f>2.0fA multiple of the standard deviation determining the size of the kernel. Default value: 2.0f.
inThresholdfloat<0.0f, INF>128.0fMinimal value of a bright pixel. Default value: 128.0f.
outLinePeakPointsAvlNet.Point2D?Line peak positions.
diagLinePeakProfileAvlNet.ProfileProfile of line peak positions.

See also