Click or drag to resize
SIFT Constructor
http://www.emgu.com
Create a SIFT using the specific values

Namespace: Emgu.CV.XFeatures2D
Assembly: Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.1.0.2282 (3.1.0.2282)
Syntax
public SIFT(
	int nFeatures = 0,
	int nOctaveLayers = 3,
	double contrastThreshold = 0.04,
	double edgeThreshold = 10,
	double sigma = 1.6
)

Parameters

nFeatures (Optional)
Type: SystemInt32
The desired number of features. Use 0 for un-restricted number of features
nOctaveLayers (Optional)
Type: SystemInt32
The number of octave layers. Use 3 for default
contrastThreshold (Optional)
Type: SystemDouble
Contrast threshold. Use 0.04 as default
edgeThreshold (Optional)
Type: SystemDouble
Detector parameter. Use 10.0 as default
sigma (Optional)
Type: SystemDouble
Use 1.6 as default
See Also