http://www.emgu.com
Create a BRISK keypoint detector and descriptor extractor.
Namespace:
Emgu.CV.Features2D
Assembly:
Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntaxpublic Brisk(
int thresh = 30,
int octaves = 3,
float patternScale = 1f
)
Public Sub New (
Optional thresh As Integer = 30,
Optional octaves As Integer = 3,
Optional patternScale As Single = 1F
)
public:
Brisk(
int thresh = 30,
int octaves = 3,
float patternScale = 1f
)
new :
?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
Feature parameters. - octaves (Optional)
- Type: SystemInt32
The number of octave layers. - patternScale (Optional)
- Type: SystemSingle
Pattern scale
See Also