http://www.emgu.com
Create a Freak descriptor extractor.
Namespace: Emgu.CV.Features2DAssembly: Emgu.CV (in Emgu.CV.dll) Version: 2.4.2.1777 (2.4.2.1777)
Syntax
C# |
---|
public Freak(
bool orientationNormalized,
bool scaleNormalized,
float patternScale,
int nOctaves
) |
Visual Basic |
---|
Public Sub New ( _
orientationNormalized As Boolean, _
scaleNormalized As Boolean, _
patternScale As Single, _
nOctaves As Integer _
) |
Visual C++ |
---|
public:
Freak(
bool orientationNormalized,
bool scaleNormalized,
float patternScale,
int nOctaves
) |
Parameters
- orientationNormalized
- Type: System..::..Boolean
Enable orientation normalization, use true for default.
- scaleNormalized
- Type: System..::..Boolean
Enable scale normalization, use true for default.
- patternScale
- Type: System..::..Single
Scaling of the description pattern, use 22.0f for default.
- nOctaves
- Type: System..::..Int32
Number of octaves covered by the detected keypoints, use 4 for default.
See Also