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.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntaxpublic CudaMinEigenValCorner(
DepthType srcDepth,
int srcChannels,
int blockSize,
int kSize,
BorderType borderType = BorderType.Reflect101
)
Public Sub New (
srcDepth As DepthType,
srcChannels As Integer,
blockSize As Integer,
kSize As Integer,
Optional borderType As BorderType = BorderType.Reflect101
)
public:
CudaMinEigenValCorner(
DepthType srcDepth,
int srcChannels,
int blockSize,
int kSize,
BorderType borderType = BorderType::Reflect101
)
new :
srcDepth : DepthType *
srcChannels : int *
blockSize : int *
kSize : int *
?borderType : BorderType
(* Defaults:
let _borderType = defaultArg borderType BorderType.Reflect101
*)
-> CudaMinEigenValCorner
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