http://www.emgu.com
Create a fast detector with the specific parameters
Namespace: Emgu.CV.Features2DAssembly: Emgu.CV (in Emgu.CV.dll) Version: 2.3.0.1416 (2.3.0.1416)
Syntax
C# |
---|
public FastDetector(
int threshold,
bool nonmaxSupression
) |
Visual Basic |
---|
Public Sub New ( _
threshold As Integer, _
nonmaxSupression As Boolean _
) |
Visual C++ |
---|
public:
FastDetector(
int threshold,
bool nonmaxSupression
) |
Parameters
- threshold
- Type: System..::..Int32
Threshold on difference between intensity of center pixel and pixels on circle around
this pixel. Use 10 for default.
- nonmaxSupression
- Type: System..::..Boolean
Specifiy if non-maximum supression should be used. Use true for default.
See Also