CudaHoughSegmentDetectorDetect Method |
http://www.emgu.com
Finds line segments in a binary image using the probabilistic Hough transform.
Namespace:
Emgu.CV.Cuda
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.0.3408 (4.1.0.3408)
Syntaxpublic void Detect(
IInputArray image,
IOutputArray lines,
Stream stream = null
)
Public Sub Detect (
image As IInputArray,
lines As IOutputArray,
Optional stream As Stream = Nothing
)
public:
void Detect(
IInputArray^ image,
IOutputArray^ lines,
Stream^ stream = nullptr
)
member Detect :
image : IInputArray *
lines : IOutputArray *
?stream : Stream
(* Defaults:
let _stream = defaultArg stream null
*)
-> unit
Parameters
- image
- Type: Emgu.CVIInputArray
8-bit, single-channel binary source image - lines
- Type: Emgu.CVIOutputArray
Output vector of lines. Each line is represented by a 4-element vector (x1, y1, x2, y2) , where (x1, y1) and (x2, y2) are the ending points of each detected line segment. - 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