CudaHoughLinesDetector Constructor |
http://www.emgu.com
Create a hough lines detector
Namespace: Emgu.CV.CudaAssembly: Emgu.CV.Cuda (in Emgu.CV.Cuda.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic CudaHoughLinesDetector(
float rho,
float theta,
int threshold,
bool doSort = false,
int maxLines = 4096
)
Public Sub New (
rho As Single,
theta As Single,
threshold As Integer,
Optional doSort As Boolean = false,
Optional maxLines As Integer = 4096
)
public:
CudaHoughLinesDetector(
float rho,
float theta,
int threshold,
bool doSort = false,
int maxLines = 4096
)
new :
rho : float32 *
theta : float32 *
threshold : int *
?doSort : bool *
?maxLines : int
(* Defaults:
let _doSort = defaultArg doSort false
let _maxLines = defaultArg maxLines 4096
*)
-> CudaHoughLinesDetector
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