BRISKCreate Method (Int32, Int32, Single)
|
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
Syntaxpublic static BRISK Create(
int thresh = 30,
int octaves = 3,
float patternScale = 1f
)
Public Shared Function Create (
Optional thresh As Integer = 30,
Optional octaves As Integer = 3,
Optional patternScale As Single = 1F
) As BRISK
public:
static BRISK^ Create(
int thresh = 30,
int octaves = 3,
float patternScale = 1f
)
static member Create :
?thresh : int *
?octaves : int *
?patternScale : float32
(* Defaults:
let _thresh = defaultArg thresh 30
let _octaves = defaultArg octaves 3
let _patternScale = defaultArg patternScale 1f
*)
-> BRISK
OpenCvSharp.BRISK.Create = function(thresh, octaves, patternScale);
Parameters
- thresh (Optional)
- Type: SystemInt32
- octaves (Optional)
- Type: SystemInt32
- patternScale (Optional)
- Type: SystemSingle
Return Value
Type:
BRISK
See Also