You are here: Start » FIL.NET » Function Reference » Computer Vision » Image Analysis » FIL.DetectLinePeak
Finds line peaks on an image.
Namespace: | FilNet |
---|---|
Assembly: | FIL.NET.dll |
Syntax
C++
C#
public static void DetectLinePeak ( FilNet.Image inImage, FilNet.LinePeakDetectionMethod inDetectionMethod, float inThreshold, IList<FilNet.Point2D?> outLinePeakPoints )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inImage | FilNet.Image | Input image. | ||
![]() | inDetectionMethod | FilNet.LinePeakDetectionMethod | MaximalPixel | Method used to determine exact line peak position. Default value: MaximalPixel. | |
![]() | inThreshold | float | <0.0f, INF> | 128.0f | Minimal value of a bright pixel. Default value: 128.0f. |
![]() | outLinePeakPoints | System.Collections.Generic.IList<FilNet.Point2D?> | Line peak positions. |
Hardware Acceleration
This operation supports automatic parallelization for multicore and multiprocessor systems.
Hardware acceleration settings may be manipulated with Settings class.
Errors
List of possible exceptions:
Error type | Description |
---|---|
DomainError | Unknown input detection method in DetectLinePeak. |