You are here: Start » AVL.NET » Function Reference » Computer Vision » Shape Fitting » AVL.DetectArc_LSD

AVL.DetectArc_LSD

Finds arcs in an image using Line Segment Detection method.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void DetectArc_LSD
(
	AvlNet.Image inImage,
	NullableRef<AvlNet.Region> inRoi,
	AvlNet.GaussKernel inSmoothing,
	float inEdgeThreshold,
	int inMinLength,
	IList<AvlNet.Arc2D> outArcs
)

Parameters

Name Type Range Default Description
inImageAvlNet.ImageImage to fit the arcs to.
inRoiAvlNet.NullableRef<AvlNet.Region>Input region of interest. Default value: atl::NIL.
inSmoothingAvlNet.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<AvlNet.Arc2D>Found arcs.

Function Overrides

See also