http://www.emgu.com
Create a star detector with the specific parameters
Namespace:
Emgu.CV.XFeatures2D
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.3.0.2824 (3.3.0.2824)
Syntaxpublic StarDetector(
int maxSize = 45,
int responseThreshold = 30,
int lineThresholdProjected = 10,
int lineThresholdBinarized = 8,
int suppressNonmaxSize = 5
)
Public Sub New (
Optional maxSize As Integer = 45,
Optional responseThreshold As Integer = 30,
Optional lineThresholdProjected As Integer = 10,
Optional lineThresholdBinarized As Integer = 8,
Optional suppressNonmaxSize As Integer = 5
)
public:
StarDetector(
int maxSize = 45,
int responseThreshold = 30,
int lineThresholdProjected = 10,
int lineThresholdBinarized = 8,
int suppressNonmaxSize = 5
)
new :
?maxSize : int *
?responseThreshold : int *
?lineThresholdProjected : int *
?lineThresholdBinarized : int *
?suppressNonmaxSize : int
(* Defaults:
let _maxSize = defaultArg maxSize 45
let _responseThreshold = defaultArg responseThreshold 30
let _lineThresholdProjected = defaultArg lineThresholdProjected 10
let _lineThresholdBinarized = defaultArg lineThresholdBinarized 8
let _suppressNonmaxSize = defaultArg suppressNonmaxSize 5
*)
-> StarDetector
Parameters
- maxSize (Optional)
- Type: SystemInt32
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 (Optional)
- Type: SystemInt32
Threshold for the approximated laplacian,
used to eliminate weak features. The larger it is,
the less features will be retrieved
- lineThresholdProjected (Optional)
- Type: SystemInt32
Another threshold for the laplacian to eliminate edges.
The larger the threshold, the more points you get.
- lineThresholdBinarized (Optional)
- Type: SystemInt32
Another threshold for the feature size to eliminate edges.
The larger the threshold, the more points you get. - suppressNonmaxSize (Optional)
- Type: SystemInt32
[Missing <param name="suppressNonmaxSize"/> documentation for "M:Emgu.CV.XFeatures2D.StarDetector.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)"]
See Also