FastFeatureDetectorCreate Method
|
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
Syntaxpublic static FastFeatureDetector Create(
int threshold = 10,
bool nonmaxSuppression = true
)
Public Shared Function Create (
Optional threshold As Integer = 10,
Optional nonmaxSuppression As Boolean = true
) As FastFeatureDetector
public:
static FastFeatureDetector^ Create(
int threshold = 10,
bool nonmaxSuppression = true
)
static member Create :
?threshold : int *
?nonmaxSuppression : bool
(* Defaults:
let _threshold = defaultArg threshold 10
let _nonmaxSuppression = defaultArg nonmaxSuppression true
*)
-> FastFeatureDetector
OpenCvSharp.FastFeatureDetector.Create = function(threshold, nonmaxSuppression);
Parameters
- threshold (Optional)
- Type: SystemInt32
- nonmaxSuppression (Optional)
- Type: SystemBoolean
Return Value
Type:
FastFeatureDetector
See Also