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

Invoke.DetectLinePeak

Finds line peaks on an image.

Namespace:Fil
Assembly:FilNet.dll

Syntax

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

Parameters

Name Type Range Default Description
inImageFil.ImageInput image.
inDetectionMethodFil.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<Ftl.Conditional<Fil.Point2D>>Line peak positions.
diagLinePeakProfileFil.Diagnostic<Fil.Profile>Profile of line peak positions.

See also