CudaHoughSegmentDetectorDetect Method |
http://www.emgu.com
Finds line segments in a binary image using the probabilistic Hough transform.
Namespace: Emgu.CV.CudaAssembly: Emgu.CV.Cuda (in Emgu.CV.Cuda.dll) Version: 3.0.0.2161 (3.0.0.2161)
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
[Missing <param name="stream"/> documentation for "M:Emgu.CV.Cuda.CudaHoughSegmentDetector.Detect(Emgu.CV.IInputArray,Emgu.CV.IOutputArray,Emgu.CV.Cuda.Stream)"]
See Also