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

AVL.DetectCircle_LSD

Finds circles in the input image using Line Segment Detection method.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void DetectCircle_LSD
(
	AvlNet.Image inImage,
	AvlNet.GaussKernel inSmoothing,
	float inEdgeThreshold,
	float inToleranceCircle,
	int inMinRadius,
	IList<AvlNet.Circle2D> outCircles
)

Parameters

Name Type Range Default Description
inImageAvlNet.ImageImage to fit the circles to.
inSmoothingAvlNet.GaussKernel_5x5Predefined Gauss kernel. Default value: _5x5.
inEdgeThresholdfloat<0.1f, INF>4.0fMinimum accepted edge magnitude. Default value: 4.0f.
inToleranceCirclefloat<0.001f, INF>0.6fMaximum accepted defects in output circles. Default value: 0.6f.
inMinRadiusint<0, INF>10Minimum radius of output circles. Default value: 10.
outCirclesSystem.Collections.Generic.IList<AvlNet.Circle2D>Found circles.

Function Overrides

See also