Table of Contents

Class CudaMinEigenValCorner

Namespace
Emgu.CV.Cuda
Assembly
Emgu.CV.dll

Implementation for the minimum eigen value of a 2x2 derivative covariation matrix (the cornerness criteria).

public class CudaMinEigenValCorner : CudaCornernessCriteria, IDisposable
Inheritance
CudaMinEigenValCorner
Implements
Inherited Members

Constructors

CudaMinEigenValCorner(DepthType, int, int, int, BorderType)

Creates implementation for the minimum eigen value of a 2x2 derivative covariation matrix (the cornerness criteria).

public CudaMinEigenValCorner(DepthType srcDepth, int srcChannels, int blockSize, int kSize, BorderType borderType = BorderType.Default)

Parameters

srcDepth DepthType

Input source depth. Only 8U and 32F are supported for now.

srcChannels int

Input source type. Only single channel are supported for now.

blockSize int

Neighborhood size.

kSize int

Aperture parameter for the Sobel operator.

borderType BorderType

Pixel extrapolation method. Only BORDER_REFLECT101 and BORDER_REPLICATE are supported for now.