Click or drag to resize
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.Cuda (in Emgu.CV.Cuda.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntax
public void Detect(
	IInputArray image,
	IOutputArray lines,
	Stream stream = null
)

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