You are here: Start » FIL.NET » Invoke.DetectArc_LSD
Finds arcs in an image using Line Segment Detection method.
Namespace: | Fil |
---|---|
Assembly: | FilNet.dll |
Syntax
C++
C#
public static void DetectArc_LSD ( Fil.Image inImage, Optional<Fil.Region> inRoi, Fil.GaussKernel inSmoothing, float inEdgeThreshold, int inMinLength, List<Fil.Arc2D> outArcs )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inImage | Fil.Image | Image to fit the arcs to. | ||
![]() | inRoi | Ftl.Optional<Fil.Region> | Input region of interest. Default value: ftl::NIL. | ||
![]() | inSmoothing | Fil.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.List<Fil.Arc2D> | Found arcs. |