http://www.emgu.com
Create a Freak descriptor extractor.
Namespace:
Emgu.CV.XFeatures2D
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.3.0.2824 (3.3.0.2824)
Syntaxpublic Freak(
bool orientationNormalized = true,
bool scaleNormalized = true,
float patternScale = 22f,
int nOctaves = 4
)
Public Sub New (
Optional orientationNormalized As Boolean = true,
Optional scaleNormalized As Boolean = true,
Optional patternScale As Single = 22F,
Optional nOctaves As Integer = 4
)
public:
Freak(
bool orientationNormalized = true,
bool scaleNormalized = true,
float patternScale = 22f,
int nOctaves = 4
)
new :
?orientationNormalized : bool *
?scaleNormalized : bool *
?patternScale : float32 *
?nOctaves : int
(* Defaults:
let _orientationNormalized = defaultArg orientationNormalized true
let _scaleNormalized = defaultArg scaleNormalized true
let _patternScale = defaultArg patternScale 22f
let _nOctaves = defaultArg nOctaves 4
*)
-> Freak
Parameters
- orientationNormalized (Optional)
- Type: SystemBoolean
Enable orientation normalization - scaleNormalized (Optional)
- Type: SystemBoolean
Enable scale normalization - patternScale (Optional)
- Type: SystemSingle
Scaling of the description pattern - nOctaves (Optional)
- Type: SystemInt32
Number of octaves covered by the detected keypoints.
See Also