http://www.emgu.com
Create CvSURFParams with the specific value
Namespace: Emgu.CV.StructureAssembly: Emgu.CV (in Emgu.CV.dll) Version: 2.3.0.1416 (2.3.0.1416)
Syntax
C# |
---|
public MCvSURFParams(
double hessianThreshold,
bool extended,
int nOctaves,
int nOctaveLayers
) |
Visual Basic |
---|
Public Sub New ( _
hessianThreshold As Double, _
extended As Boolean, _
nOctaves As Integer, _
nOctaveLayers As Integer _
) |
Visual C++ |
---|
public:
MCvSURFParams(
double hessianThreshold,
bool extended,
int nOctaves,
int nOctaveLayers
) |
Parameters
- hessianThreshold
- Type: System..::..Double
Only features with keypoint.hessian larger than this are extracted.
- extended
- Type: System..::..Boolean
False means basic descriptors (64 elements each),
True means extended descriptors (128 elements each)
- nOctaves
- Type: System..::..Int32
The number of octaves to be used for extraction.
With each next octave the feature size is doubled
- nOctaveLayers
- Type: System..::..Int32
The number of layers within each octave
See Also