Click or drag to resize
CudaHoughSegmentDetector Constructor
http://www.emgu.com
Create a hough segment detector

Namespace: Emgu.CV.Cuda
Assembly: Emgu.CV.Cuda (in Emgu.CV.Cuda.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntax
public CudaHoughSegmentDetector(
	float rho,
	float theta,
	int minLineLength,
	int maxLineGap,
	int maxLines = 4096
)

Parameters

rho
Type: SystemSingle
Distance resolution of the accumulator in pixels.
theta
Type: SystemSingle
Angle resolution of the accumulator in radians.
minLineLength
Type: SystemInt32
Minimum line length. Line segments shorter than that are rejected.
maxLineGap
Type: SystemInt32
Maximum allowed gap between points on the same line to link them.
maxLines (Optional)
Type: SystemInt32
Maximum number of output lines.
See Also