AgastFeatureDetector Constructor |
http://www.emgu.com
Create AGAST using the specific values
Namespace:
Emgu.CV.Features2D
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.0.3408 (4.1.0.3408)
Syntaxpublic AgastFeatureDetector(
int threshold = 10,
bool nonmaxSuppression = true,
AgastFeatureDetectorType type = AgastFeatureDetectorType.OAST_9_16
)
Public Sub New (
Optional threshold As Integer = 10,
Optional nonmaxSuppression As Boolean = true,
Optional type As AgastFeatureDetectorType = AgastFeatureDetectorType.OAST_9_16
)
public:
AgastFeatureDetector(
int threshold = 10,
bool nonmaxSuppression = true,
AgastFeatureDetectorType type = AgastFeatureDetectorType::OAST_9_16
)
new :
?threshold : int *
?nonmaxSuppression : bool *
?type : AgastFeatureDetectorType
(* Defaults:
let _threshold = defaultArg threshold 10
let _nonmaxSuppression = defaultArg nonmaxSuppression true
let _type = defaultArg type AgastFeatureDetectorType.OAST_9_16
*)
-> AgastFeatureDetector
Parameters
- threshold (Optional)
- Type: SystemInt32
Threshold - nonmaxSuppression (Optional)
- Type: SystemBoolean
Non maximum suppression - type (Optional)
- Type: Emgu.CV.Features2DAgastFeatureDetectorType
Type
See Also