You are here: Start » AVL.NET » Invoke.DetectLinePeak

Invoke.DetectLinePeak

Finds line peaks on an image.

Namespace:Avl
Assembly:AvlNet.dll

Syntax

C++
C#
 
public static void DetectLinePeak
(
	Avl.Image inImage,
	Avl.LinePeakDetectionMethod inDetectionMethod,
	float inThreshold,
	List<Conditional<Avl.Point2D>> outLinePeakPoints,
	Diagnostic<Avl.Profile> diagLinePeakProfile
)

Parameters

Name Type Range Default Description
inImageAvl.ImageInput image.
inDetectionMethodAvl.LinePeakDetectionMethodMaximalPixelMethod used to determine exact line peak position. Default value: MaximalPixel.
inThresholdfloat<0.0f, INF>128.0fMinimal value of a bright pixel. Default value: 128.0f.
outLinePeakPointsSystem.Collections.Generic.List<Atl.Conditional<Avl.Point2D>>Line peak positions.
diagLinePeakProfileAvl.Diagnostic<Avl.Profile>Profile of line peak positions.

See also