DenseFeatureDetector Constructor OpenCvSharp Class Library
The detector generates several levels (in the amount of featureScaleLevels) of features. Features of each level are located in the nodes of a regular grid over the image (excluding the image boundary of given size). The level parameters (a feature scale, a node size, a size of boundary) are multiplied by featureScaleMul with level index growing depending on input flags, viz.:

Namespace:  OpenCvSharp.CPlusPlus
Assembly:  OpenCvSharp.CPlusPlus (in OpenCvSharp.CPlusPlus.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax

public DenseFeatureDetector(
	float initFeatureScale = 1f,
	int featureScaleLevels = 1,
	float featureScaleMul = 0.1f,
	int initXyStep = 6,
	int initImgBound = 0,
	bool varyXyStepWithScale = true,
	bool varyImgBoundWithScale = false
)

Parameters

initFeatureScale (Optional)
Type: SystemSingle

[Missing <param name="initFeatureScale"/> documentation for "M:OpenCvSharp.CPlusPlus.DenseFeatureDetector.#ctor(System.Single,System.Int32,System.Single,System.Int32,System.Int32,System.Boolean,System.Boolean)"]

featureScaleLevels (Optional)
Type: SystemInt32

[Missing <param name="featureScaleLevels"/> documentation for "M:OpenCvSharp.CPlusPlus.DenseFeatureDetector.#ctor(System.Single,System.Int32,System.Single,System.Int32,System.Int32,System.Boolean,System.Boolean)"]

featureScaleMul (Optional)
Type: SystemSingle

[Missing <param name="featureScaleMul"/> documentation for "M:OpenCvSharp.CPlusPlus.DenseFeatureDetector.#ctor(System.Single,System.Int32,System.Single,System.Int32,System.Int32,System.Boolean,System.Boolean)"]

initXyStep (Optional)
Type: SystemInt32

[Missing <param name="initXyStep"/> documentation for "M:OpenCvSharp.CPlusPlus.DenseFeatureDetector.#ctor(System.Single,System.Int32,System.Single,System.Int32,System.Int32,System.Boolean,System.Boolean)"]

initImgBound (Optional)
Type: SystemInt32

[Missing <param name="initImgBound"/> documentation for "M:OpenCvSharp.CPlusPlus.DenseFeatureDetector.#ctor(System.Single,System.Int32,System.Single,System.Int32,System.Int32,System.Boolean,System.Boolean)"]

varyXyStepWithScale (Optional)
Type: SystemBoolean
The grid node size is multiplied if this is true.
varyImgBoundWithScale (Optional)
Type: SystemBoolean
Size of image boundary is multiplied if this is true.
See Also

Reference