CvArrHoughCircles Method (CvMemStorage, HoughCirclesMethod, Double, Double) OpenCvSharp Class Library
Finds circles in grayscale image using Hough transform.

Namespace:  OpenCvSharp
Assembly:  OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax

public CvSeq<CvCircleSegment> HoughCircles(
	CvMemStorage circleStorage,
	HoughCirclesMethod method,
	double dp,
	double minDist
)

Parameters

circleStorage
Type: OpenCvSharpCvMemStorage
The storage for the circles detected. It can be a memory storage or single row/single column matrix (CvMat*) of type CV_32FC3, to which the circles' parameters are written.
method
Type: OpenCvSharpHoughCirclesMethod
Currently, the only implemented method is CV_HOUGH_GRADIENT, which is basically 21HT
dp
Type: SystemDouble
Resolution of the accumulator used to detect centers of the circles. For example, if it is 1, the accumulator will have the same resolution as the input image, if it is 2 - accumulator will have twice smaller width and height, etc.
minDist
Type: SystemDouble
Minimum distance between centers of the detected circles. If the parameter is too small, multiple neighbor circles may be falsely detected in addition to a true one. If it is too large, some circles may be missed.

Return Value

Type: CvSeqCvCircleSegment

[Missing <returns> documentation for "M:OpenCvSharp.CvArr.HoughCircles(OpenCvSharp.CvMemStorage,OpenCvSharp.HoughCirclesMethod,System.Double,System.Double)"]

See Also

Reference