CudaHoughSegmentDetector Constructor |
http://www.emgu.com
Create a hough segment detector
Namespace: Emgu.CV.CudaAssembly: Emgu.CV.Cuda (in Emgu.CV.Cuda.dll) Version: 3.0.0.2161 (3.0.0.2161)
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