Create a star detector with the specific parameters

Namespace: Emgu.CV.Features2D
Assembly: Emgu.CV (in Emgu.CV.dll) Version: 2.2.0.1010 (2.2.0.1010)

Syntax

         
 C#  Visual Basic  Visual C++ 
public StarDetector(
	int maxSize,
	int responseThreshold,
	int lineThresholdProjected,
	int lineThresholdBinarized,
	int suppressNonmaxSize
)
Public Sub New ( _
	maxSize As Integer, _
	responseThreshold As Integer, _
	lineThresholdProjected As Integer, _
	lineThresholdBinarized As Integer, _
	suppressNonmaxSize As Integer _
)
public:
StarDetector(
	int maxSize, 
	int responseThreshold, 
	int lineThresholdProjected, 
	int lineThresholdBinarized, 
	int suppressNonmaxSize
)

Parameters

maxSize
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
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
Int32
Use 10 as default. Another threshold for the laplacian to eliminate edges. The larger the threshold, the more points you get.
lineThresholdBinarized
Int32
Use 8 as default. Another threshold for the feature size to eliminate edges. The larger the threshold, the more points you get.
suppressNonmaxSize
Int32
Use 5 as default.

See Also