Property | Type | Description | |
---|---|---|---|
Extended | bool | ||
HessianThreshold | double | ||
NOctaveLayers | int | ||
NOctaves | int | ||
Upright | bool |
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
|
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 |
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 |