| AgastFeatureDetectorCreate Method |
The AgastFeatureDetector constructor
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public static AgastFeatureDetector Create(
int threshold = 10,
bool nonmaxSuppression = true,
AgastFeatureDetectorDetectorType type = AgastFeatureDetectorDetectorType.OAST_9_16
)
Public Shared Function Create (
Optional threshold As Integer = 10,
Optional nonmaxSuppression As Boolean = true,
Optional type As AgastFeatureDetectorDetectorType = AgastFeatureDetectorDetectorType.OAST_9_16
) As AgastFeatureDetector
public:
static AgastFeatureDetector^ Create(
int threshold = 10,
bool nonmaxSuppression = true,
AgastFeatureDetectorDetectorType type = AgastFeatureDetectorDetectorType::OAST_9_16
)
static member Create :
?threshold : int *
?nonmaxSuppression : bool *
?type : AgastFeatureDetectorDetectorType
(* Defaults:
let _threshold = defaultArg threshold 10
let _nonmaxSuppression = defaultArg nonmaxSuppression true
let _type = defaultArg type AgastFeatureDetectorDetectorType.OAST_9_16
*)
-> AgastFeatureDetector
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: OpenCvSharpAgastFeatureDetectorDetectorType
[Missing <param name="type"/> documentation for "M:OpenCvSharp.AgastFeatureDetector.Create(System.Int32,System.Boolean,OpenCvSharp.AgastFeatureDetector.DetectorType)"]
Return Value
Type:
AgastFeatureDetector[Missing <returns> documentation for "M:OpenCvSharp.AgastFeatureDetector.Create(System.Int32,System.Boolean,OpenCvSharp.AgastFeatureDetector.DetectorType)"]
See Also