StarDetectorCreate Method
|
Constructor
Namespace:
OpenCvSharp.XFeatures2D
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
Syntaxpublic static StarDetector Create(
int maxSize = 45,
int responseThreshold = 30,
int lineThresholdProjected = 10,
int lineThresholdBinarized = 8,
int suppressNonmaxSize = 5
)
Public Shared Function Create (
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
) As StarDetector
public:
static StarDetector^ Create(
int maxSize = 45,
int responseThreshold = 30,
int lineThresholdProjected = 10,
int lineThresholdBinarized = 8,
int suppressNonmaxSize = 5
)
static member Create :
?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
OpenCvSharp.XFeatures2D.StarDetector.Create = function(maxSize, responseThreshold, lineThresholdProjected, lineThresholdBinarized, suppressNonmaxSize);
Parameters
- maxSize (Optional)
- Type: SystemInt32
- responseThreshold (Optional)
- Type: SystemInt32
- lineThresholdProjected (Optional)
- Type: SystemInt32
- lineThresholdBinarized (Optional)
- Type: SystemInt32
- suppressNonmaxSize (Optional)
- Type: SystemInt32
Return Value
Type:
StarDetector
See Also