http://www.emgu.com
Create a star 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 StarDetector(
int maxSize,
int responseThreshold,
int lineThresholdProjected,
int lineThresholdBinarized,
int suppressNonmaxSize
) |
Visual Basic |
---|
Public Sub New ( _
maxSize As Integer, _
responseThreshold As Integer, _
lineThresholdProjected As Integer, _
lineThresholdBinarized As Integer, _
suppressNonmaxSize As Integer _
) |
Visual C++ |
---|
public:
StarDetector(
int maxSize,
int responseThreshold,
int lineThresholdProjected,
int lineThresholdBinarized,
int suppressNonmaxSize
) |
Parameters
- maxSize
- Type: System..::..Int32
Use 45 as default. Maximum size of the features. The following
values of the parameter are supported:
4, 6, 8, 11, 12, 16, 22, 23, 32, 45, 46, 64, 90, 128
- responseThreshold
- Type: System..::..Int32
Use 30 as default. Threshold for the approximated laplacian,
used to eliminate weak features. The larger it is,
the less features will be retrieved
- lineThresholdProjected
- Type: System..::..Int32
Use 10 as default. Another threshold for the laplacian to eliminate edges.
The larger the threshold, the more points you get.
- lineThresholdBinarized
- Type: System..::..Int32
Use 8 as default. Another threshold for the feature size to eliminate edges.
The larger the threshold, the more points you get.
- suppressNonmaxSize
- Type: System..::..Int32
Use 5 as default.
See Also