Click or drag to resize

CudaHoughCirclesDetectorDetect Method (IInputArray, IOutputArray, Stream)

http://www.emgu.com
Finds circles in a grayscale image using the Hough transform.

Namespace:  Emgu.CV.Cuda
Assembly:  Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntax
public void Detect(
	IInputArray image,
	IOutputArray circles,
	Stream stream = null
)

Parameters

image
Type: Emgu.CVIInputArray
8-bit, single-channel grayscale input image.
circles
Type: Emgu.CVIOutputArray
Output vector of found circles. Each vector is encoded as a 3-element floating-point vector.
stream (Optional)
Type: Emgu.CV.CudaStream
Use a Stream to call the function asynchronously (non-blocking) or null to call the function synchronously (blocking).
See Also