Click or drag to resize

CudaHoughLinesDetectorDetect 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)
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.Output vector of lines. Each line is represented by a two-element vector. The first element is the distance from the coordinate origin (top-left corner of the image). The second element is the line rotation angle in radians.
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