| BRISKCreate Method (Int32, Int32, Single) |
The BRISK constructor
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public 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
Parameters
- thresh (Optional)
- Type: SystemInt32
AGAST detection threshold score. - octaves (Optional)
- Type: SystemInt32
detection octaves. Use 0 to do single scale. - patternScale (Optional)
- Type: SystemSingle
apply this scale to the pattern used for sampling the neighbourhood of a keypoint.
Return Value
Type:
BRISK[Missing <returns> documentation for "M:OpenCvSharp.BRISK.Create(System.Int32,System.Int32,System.Single)"]
See Also