Class FastFeatureDetector
Detects corners using FAST algorithm by E. Rosten
Inheritance
System.Object
FastFeatureDetector
Implements
Inherited Members
Namespace: OpenCvSharp
Assembly: OpenCvSharp.dll
Syntax
public class FastFeatureDetector : Feature2D, ICvPtrHolder
Constructors
| Improve this Doc View SourceFastFeatureDetector(IntPtr)
Constructor
Declaration
protected FastFeatureDetector(IntPtr p)
Parameters
Type | Name | Description |
---|---|---|
IntPtr | p |
Properties
| Improve this Doc View SourceNonmaxSuppression
Declaration
public bool NonmaxSuppression { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Threshold
Declaration
public int Threshold { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
Type
Declaration
public int Type { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
Methods
| Improve this Doc View SourceCreate(Int32, Boolean)
Constructs FastFeatureDetector
Declaration
public static FastFeatureDetector Create(int threshold = 10, bool nonmaxSuppression = true)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | threshold | threshold on difference between intensity of the central pixel and pixels of a circle around this pixel. |
System.Boolean | nonmaxSuppression | if true, non-maximum suppression is applied to detected corners (keypoints). |
Returns
Type | Description |
---|---|
FastFeatureDetector |
DisposeManaged()
Releases managed resources
Declaration
protected override void DisposeManaged()