AgastFeatureDetectorCreate Method
|
The AgastFeatureDetector constructor
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
Syntaxpublic static AgastFeatureDetector Create(
int threshold = 10,
bool nonmaxSuppression = true,
AGASTType type = AGASTType.OAST_9_16
)
Public Shared Function Create (
Optional threshold As Integer = 10,
Optional nonmaxSuppression As Boolean = true,
Optional type As AGASTType = AGASTType.OAST_9_16
) As AgastFeatureDetector
public:
static AgastFeatureDetector^ Create(
int threshold = 10,
bool nonmaxSuppression = true,
AGASTType type = AGASTType::OAST_9_16
)
static member Create :
?threshold : int *
?nonmaxSuppression : bool *
?type : AGASTType
(* Defaults:
let _threshold = defaultArg threshold 10
let _nonmaxSuppression = defaultArg nonmaxSuppression true
let _type = defaultArg type AGASTType.OAST_9_16
*)
-> AgastFeatureDetector
OpenCvSharp.AgastFeatureDetector.Create = function(threshold, nonmaxSuppression, type);
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). - type (Optional)
- Type: OpenCvSharpAGASTType
Return Value
Type:
AgastFeatureDetector
See Also