C# Class Emgu.CV.Structure.MCvSURFParams

Mostrar archivo Open project: fajoy/RTSPExample Class Usage Examples

Public Properties

Property Type Description
Extended bool
HessianThreshold double
NOctaveLayers int
NOctaves int
Upright bool

Public Methods

Method Description
MCvSURFParams ( double hessianThreshold, bool extended ) : System

Creage CvSURFParams with the specific value

MCvSURFParams ( double hessianThreshold, bool extended, int nOctaves, int nOctaveLayers ) : System

Create CvSURFParams with the specific value

Method Details

MCvSURFParams() public method

Creage CvSURFParams with the specific value
public MCvSURFParams ( double hessianThreshold, bool extended ) : System
hessianThreshold double Only features with keypoint.hessian larger than this are extracted.
extended bool /// False means basic descriptors (64 elements each), /// True means extended descriptors (128 elements each) ///
return System

MCvSURFParams() public method

Create CvSURFParams with the specific value
public MCvSURFParams ( double hessianThreshold, bool extended, int nOctaves, int nOctaveLayers ) : System
hessianThreshold double Only features with keypoint.hessian larger than this are extracted.
extended bool /// False means basic descriptors (64 elements each), /// True means extended descriptors (128 elements each) ///
nOctaves int /// The number of octaves to be used for extraction. /// With each next octave the feature size is doubled ///
nOctaveLayers int /// The number of layers within each octave ///
return System

Property Details

Extended public_oe property

False means basic descriptors (64 elements each), True means extended descriptors (128 elements each)
public bool Extended
return bool

HessianThreshold public_oe property

Only features with keypoint.hessian larger than that are extracted. good default value is ~300-500 (can depend on the average local contrast and sharpness of the image). user can further filter out some features based on their hessian values and other characteristics
public double HessianThreshold
return double

NOctaveLayers public_oe property

The number of layers within each octave
public int NOctaveLayers
return int

NOctaves public_oe property

The number of octaves to be used for extraction. With each next octave the feature size is doubled
public int NOctaves
return int

Upright public_oe property

Upright SURF
public bool Upright
return bool