CudaFastFeatureDetector Constructor |
http://www.emgu.com
Create a fast detector with the specific parameters
Namespace: Emgu.CV.CudaAssembly: Emgu.CV.Cuda (in Emgu.CV.Cuda.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic CudaFastFeatureDetector(
int threshold = 10,
bool nonmaxSupression = true,
FastDetectorDetectorType type = FastDetectorDetectorType.Type9_16,
int maxNKeypoints = 5000
)
Public Sub New (
Optional threshold As Integer = 10,
Optional nonmaxSupression As Boolean = true,
Optional type As FastDetectorDetectorType = FastDetectorDetectorType.Type9_16,
Optional maxNKeypoints As Integer = 5000
)
public:
CudaFastFeatureDetector(
int threshold = 10,
bool nonmaxSupression = true,
FastDetectorDetectorType type = FastDetectorDetectorType::Type9_16,
int maxNKeypoints = 5000
)
new :
?threshold : int *
?nonmaxSupression : bool *
?type : FastDetectorDetectorType *
?maxNKeypoints : int
(* Defaults:
let _threshold = defaultArg threshold 10
let _nonmaxSupression = defaultArg nonmaxSupression true
let _type = defaultArg type FastDetectorDetectorType.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.Features2DFastDetectorDetectorType
[Missing <param name="type"/> documentation for "M:Emgu.CV.Cuda.CudaFastFeatureDetector.#ctor(System.Int32,System.Boolean,Emgu.CV.Features2D.FastDetector.DetectorType,System.Int32)"]
- maxNKeypoints (Optional)
- Type: SystemInt32
[Missing <param name="maxNKeypoints"/> documentation for "M:Emgu.CV.Cuda.CudaFastFeatureDetector.#ctor(System.Int32,System.Boolean,Emgu.CV.Features2D.FastDetector.DetectorType,System.Int32)"]
See Also