You are here: Start » FIL.NET » FIS.DetectArc_LSD Method
FIS.DetectArc_LSD Method
Finds arcs in an image using Line Segment Detection method.
Namespace: | FilNet |
---|---|
Assembly: | FIL.NET.dll |
Syntax
public static void DetectArc_LSD ( FilNet.Image inImage, FilNet.GaussKernel inSmoothing, float inEdgeThreshold, int inMinLength, IList<FilNet.Arc2D> outArcs )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inImage | FilNet.Image | Image to fit the arcs to. | ||
![]() | inSmoothing | FilNet.GaussKernel | _5x5 | Predefined Gauss kernel. Default value: _5x5. | |
![]() | inEdgeThreshold | float | <0.1f, INF> | 4.0f | Minimum accepted edge magnitude. Default value: 4.0f. |
![]() | inMinLength | int | <0, INF> | 10 | Minimum length of output arcs. Default value: 10. |
![]() | outArcs | System.Collections.Generic.IList<FilNet.Arc2D> | Found arcs. |