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)
Syntaxpublic CudaHoughSegmentDetector(
float rho,
float theta,
int minLineLength,
int maxLineGap,
int maxLines = 4096
)
Public Sub New (
rho As Single,
theta As Single,
minLineLength As Integer,
maxLineGap As Integer,
Optional maxLines As Integer = 4096
)
public:
CudaHoughSegmentDetector(
float rho,
float theta,
int minLineLength,
int maxLineGap,
int maxLines = 4096
)
new :
rho : float32 *
theta : float32 *
minLineLength : int *
maxLineGap : int *
?maxLines : int
(* Defaults:
let _maxLines = defaultArg maxLines 4096
*)
-> CudaHoughSegmentDetector
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