Click or drag to resize

CudaHoughSegmentDetector Constructor

http://www.emgu.com
Create a hough segment detector

Namespace:  Emgu.CV.Cuda
Assembly:  Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.0.3408 (4.1.0.3408)
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