CudaFastFeatureDetector Constructor |
http://www.emgu.com
Create a fast detector with the specific parameters
Namespace:
Emgu.CV.Cuda
Assembly:
Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntaxpublic CudaFastFeatureDetector(
int threshold = 10,
bool nonmaxSupression = true,
FastFeatureDetectorDetectorType type = FastFeatureDetectorDetectorType.Type9_16,
int maxNKeypoints = 5000
)
Public Sub New (
Optional threshold As Integer = 10,
Optional nonmaxSupression As Boolean = true,
Optional type As FastFeatureDetectorDetectorType = FastFeatureDetectorDetectorType.Type9_16,
Optional maxNKeypoints As Integer = 5000
)
public:
CudaFastFeatureDetector(
int threshold = 10,
bool nonmaxSupression = true,
FastFeatureDetectorDetectorType type = FastFeatureDetectorDetectorType::Type9_16,
int maxNKeypoints = 5000
)
new :
?threshold : int *
?nonmaxSupression : bool *
?type : FastFeatureDetectorDetectorType *
?maxNKeypoints : int
(* Defaults:
let _threshold = defaultArg threshold 10
let _nonmaxSupression = defaultArg nonmaxSupression true
let _type = defaultArg type FastFeatureDetectorDetectorType.Type9_16
let _maxNKeypoints = defaultArg maxNKeypoints 5000
*)
-> CudaFastFeatureDetector
Parameters
- threshold (Optional)
- Type: SystemInt32
Threshold on difference between intensity of center pixel and pixels on circle around
this pixel. Use 10 for default. - nonmaxSupression (Optional)
- Type: SystemBoolean
Specifiy if non-maximum supression should be used. - type (Optional)
- Type: Emgu.CV.Features2DFastFeatureDetectorDetectorType
The detector type - maxNKeypoints (Optional)
- Type: SystemInt32
The maximum number of keypoints to be extracted.
See Also