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.World (in Emgu.CV.World.dll) Version: 4.0.1.3373 (4.0.1.3373)
Syntaxpublic void Detect(
IInputArray image,
IOutputArray circles,
Stream stream = null
)
Public Sub Detect (
image As IInputArray,
circles As IOutputArray,
Optional stream As Stream = Nothing
)
public:
void Detect(
IInputArray^ image,
IOutputArray^ circles,
Stream^ stream = nullptr
)
member Detect :
image : IInputArray *
circles : IOutputArray *
?stream : Stream
(* Defaults:
let _stream = defaultArg stream null
*)
-> unit
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