http://www.emgu.com
Create a dense feature detector.
Namespace: Emgu.CV.Features2DAssembly: Emgu.CV (in Emgu.CV.dll) Version: 2.4.2.1777 (2.4.2.1777)
Syntax
C# |
---|
public DenseFeatureDetector(
float initFeatureScale,
int featureScaleLevels,
float featureScaleMul,
int initXyStep,
int initImgBound,
bool varyXyStepWithScale,
bool varyImgBoundWithScale
) |
Visual Basic |
---|
Public Sub New ( _
initFeatureScale As Single, _
featureScaleLevels As Integer, _
featureScaleMul As Single, _
initXyStep As Integer, _
initImgBound As Integer, _
varyXyStepWithScale As Boolean, _
varyImgBoundWithScale As Boolean _
) |
Visual C++ |
---|
public:
DenseFeatureDetector(
float initFeatureScale,
int featureScaleLevels,
float featureScaleMul,
int initXyStep,
int initImgBound,
bool varyXyStepWithScale,
bool varyImgBoundWithScale
) |
Parameters
- initFeatureScale
- Type: System..::..Single
Initial feature scale. Use 1.0 for default.
- featureScaleLevels
- Type: System..::..Int32
The number of scale levels. Use 1 for default
- featureScaleMul
- Type: System..::..Single
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. Use 0.1f for default.
- initXyStep
- Type: System..::..Int32
Initial X Y steps. Use 6 for default.
- initImgBound
- Type: System..::..Int32
Initial image boundary. Use 0 for default.
- varyXyStepWithScale
- Type: System..::..Boolean
The grid node size is multiplied if varyXyStepWithScale is true. Use true for default.
- varyImgBoundWithScale
- Type: System..::..Boolean
Size of image boundary is multiplied if varyImgBoundWithScale is true. Use false for default.
See Also