You are here: Start » AVL.NET » AVS.DetectMultipleCircles Method

AVS.DetectMultipleCircles Method

Finds circles of a given radius in the input image using Hough Transform.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

public static void DetectMultipleCircles
(
	AvlNet.Image inImage,
	NullableRef<AvlNet.Region> inRoi,
	float inRadius,
	float inMaxOverlap,
	float inMinScore,
	float inEdgeThreshold,
	IList<AvlNet.HoughCircle> outCircles,
	AvlNet.Image diagGradientMagnitudeImage,
	AvlNet.Image diagScoreImage
)

Parameters

Name Type Range Default Description
inImageAvlNet.ImageInput image.
inRoiAvlNet.NullableRef<AvlNet.Region>Input region of interest. Default value: atl::NIL.
inRadiusfloat<0.0f, INF>10.0fCircles' radius. Default value: 10.0f.
inMaxOverlapfloat<0.0f, 1.0f>0.1fMaximum accepted overlapping coefficient. Default value: 0.1f.
inMinScorefloat<0.0f, INF>20.0fMinimum matching score. Default value: 20.0f.
inEdgeThresholdfloat10.0fMinimum accepted edge magnitude. Default value: 10.0f.
outCirclesSystem.Collections.Generic.IList<AvlNet.HoughCircle>Found circles.
diagGradientMagnitudeImageAvlNet.ImageVisualized gradients magnitude of an input image.
diagScoreImageAvlNet.ImageCalculated score for each pixel of an input image.

Function Overrides

See also