| FastFeatureDetectorCreate Method |
Constructs FastFeatureDetector
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public 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
Parameters
- threshold (Optional)
- Type: SystemInt32
threshold on difference between intensity of the central pixel and pixels of a circle around this pixel. - nonmaxSuppression (Optional)
- Type: SystemBoolean
if true, non-maximum suppression is applied to detected corners (keypoints).
Return Value
Type:
FastFeatureDetector[Missing <returns> documentation for "M:OpenCvSharp.FastFeatureDetector.Create(System.Int32,System.Boolean)"]
See Also