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,
	NullableRef<FilNet.Region> inRoi,
	FilNet.GaussKernel inSmoothing,
	float inEdgeThreshold,
	int inMinLength,
	IList<FilNet.Arc2D> outArcs
)

Parameters

Name Type Range Default Description
inImageFilNet.ImageImage to fit the arcs to.
inRoiFilNet.NullableRef<FilNet.Region>Input region of interest. Default value: ftl::NIL.
inSmoothingFilNet.GaussKernel_5x5Predefined Gauss kernel. Default value: _5x5.
inEdgeThresholdfloat<0.1f, INF>4.0fMinimum accepted edge magnitude. Default value: 4.0f.
inMinLengthint<0, INF>10Minimum length of output arcs. Default value: 10.
outArcsSystem.Collections.Generic.IList<FilNet.Arc2D>Found arcs.

Function Overrides

See also