Click or drag to resize
CudaHoughLinesDetector Constructor
http://www.emgu.com
Create a hough lines 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 CudaHoughLinesDetector(
	float rho,
	float theta,
	int threshold,
	bool doSort = false,
	int maxLines = 4096
)

Parameters

rho
Type: SystemSingle
Distance resolution of the accumulator in pixels.
theta
Type: SystemSingle
Angle resolution of the accumulator in radians.
threshold
Type: SystemInt32
Accumulator threshold parameter. Only those lines are returned that get enough votes (> threshold).
doSort (Optional)
Type: SystemBoolean
Performs lines sort by votes.
maxLines (Optional)
Type: SystemInt32
Maximum number of output lines.
See Also