Click or drag to resize

CudaMinEigenValCorner Constructor

http://www.emgu.com
Creates implementation for the minimum eigen value of a 2x2 derivative covariation matrix (the cornerness criteria).

Namespace:  Emgu.CV.Cuda
Assembly:  Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.0.3408 (4.1.0.3408)
Syntax
public CudaMinEigenValCorner(
	DepthType srcDepth,
	int srcChannels,
	int blockSize,
	int kSize,
	BorderType borderType = BorderType.Reflect101
)

Parameters

srcDepth
Type: Emgu.CV.CvEnumDepthType
Input source depth. Only 8U and 32F are supported for now.
srcChannels
Type: SystemInt32
Input source type. Only single channel are supported for now.
blockSize
Type: SystemInt32
Neighborhood size.
kSize
Type: SystemInt32
Aperture parameter for the Sobel operator.
borderType (Optional)
Type: Emgu.CV.CvEnumBorderType
Pixel extrapolation method. Only BORDER_REFLECT101 and BORDER_REPLICATE are supported for now.
See Also