Click or drag to resize

CudaHoughLinesDetector Constructor

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

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