Method CornerMinEigenVal
- Namespace
- OpenCvSharp
- Assembly
- OpenCvSharp.dll
CornerMinEigenVal(InputArray, OutputArray, int, int, BorderTypes)
Calculates the minimal eigenvalue of gradient matrices for corner detection.
public static void CornerMinEigenVal(InputArray src, OutputArray dst, int blockSize, int ksize = 3, BorderTypes borderType = BorderTypes.Default)
Parameters
srcInputArrayInput single-channel 8-bit or floating-point image.
dstOutputArrayImage to store the minimal eigenvalues. It has the type CV_32FC1 and the same size as src .
blockSizeintNeighborhood size (see the details on #cornerEigenValsAndVecs ).
ksizeintAperture parameter for the Sobel operator.
borderTypeBorderTypesPixel extrapolation method. See #BorderTypes. #BORDER_WRAP is not supported.