CudaGoodFeaturesToTrackDetector Constructor |
http://www.emgu.com
Create the Cuda implementation of GoodFeaturesToTrackDetector
Namespace:
Emgu.CV.Cuda
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.0.1.3373 (4.0.1.3373)
Syntaxpublic CudaGoodFeaturesToTrackDetector(
DepthType srcDepth,
int srcChannels,
int maxCorners = 1000,
double qualityLevel = 0.01,
double minDistance = 0,
int blockSize = 3,
bool useHarrisDetector = false,
double harrisK = 0.04
)
Public Sub New (
srcDepth As DepthType,
srcChannels As Integer,
Optional maxCorners As Integer = 1000,
Optional qualityLevel As Double = 0.01,
Optional minDistance As Double = 0,
Optional blockSize As Integer = 3,
Optional useHarrisDetector As Boolean = false,
Optional harrisK As Double = 0.04
)
public:
CudaGoodFeaturesToTrackDetector(
DepthType srcDepth,
int srcChannels,
int maxCorners = 1000,
double qualityLevel = 0.01,
double minDistance = 0,
int blockSize = 3,
bool useHarrisDetector = false,
double harrisK = 0.04
)
new :
srcDepth : DepthType *
srcChannels : int *
?maxCorners : int *
?qualityLevel : float *
?minDistance : float *
?blockSize : int *
?useHarrisDetector : bool *
?harrisK : float
(* Defaults:
let _maxCorners = defaultArg maxCorners 1000
let _qualityLevel = defaultArg qualityLevel 0.01
let _minDistance = defaultArg minDistance 0
let _blockSize = defaultArg blockSize 3
let _useHarrisDetector = defaultArg useHarrisDetector false
let _harrisK = defaultArg harrisK 0.04
*)
-> CudaGoodFeaturesToTrackDetector
Parameters
- srcDepth
- Type: Emgu.CV.CvEnumDepthType
The depth of the src image - srcChannels
- Type: SystemInt32
The number of channels in the src image - maxCorners (Optional)
- Type: SystemInt32
The maximum number of channels - qualityLevel (Optional)
- Type: SystemDouble
The quality level - minDistance (Optional)
- Type: SystemDouble
The minimum distance - blockSize (Optional)
- Type: SystemInt32
The block size - useHarrisDetector (Optional)
- Type: SystemBoolean
If true, use Harris detector - harrisK (Optional)
- Type: SystemDouble
Harris K
See Also