HarrisLaplaceFeatureDetector Constructor |
http://www.emgu.com
Create a HarrisLaplaceFeatureDetector
Namespace:
Emgu.CV.XFeatures2D
Assembly:
Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntaxpublic HarrisLaplaceFeatureDetector(
int numOctaves,
float cornThresh,
float DOGThresh,
int maxCorners,
int numLayers
)
Public Sub New (
numOctaves As Integer,
cornThresh As Single,
DOGThresh As Single,
maxCorners As Integer,
numLayers As Integer
)
public:
HarrisLaplaceFeatureDetector(
int numOctaves,
float cornThresh,
float DOGThresh,
int maxCorners,
int numLayers
)
new :
numOctaves : int *
cornThresh : float32 *
DOGThresh : float32 *
maxCorners : int *
numLayers : int -> HarrisLaplaceFeatureDetector
Parameters
- numOctaves
- Type: SystemInt32
the number of octaves in the scale-space pyramid - cornThresh
- Type: SystemSingle
the threshold for the Harris cornerness measure - DOGThresh
- Type: SystemSingle
the threshold for the Difference-of-Gaussians scale selection - maxCorners
- Type: SystemInt32
the maximum number of corners to consider - numLayers
- Type: SystemInt32
the number of intermediate scales per octave
See Also