MatCornerEigenValsAndVecs Method
|
computes both eigenvalues and the eigenvectors of 2x2 derivative covariation matrix at each pixel. The output is stored as 6-channel matrix.
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
Syntaxpublic Mat CornerEigenValsAndVecs(
int blockSize,
int ksize,
BorderTypes borderType = BorderTypes.Reflect101
)
Public Function CornerEigenValsAndVecs (
blockSize As Integer,
ksize As Integer,
Optional borderType As BorderTypes = BorderTypes.Reflect101
) As Mat
public:
Mat^ CornerEigenValsAndVecs(
int blockSize,
int ksize,
BorderTypes borderType = BorderTypes::Reflect101
)
member CornerEigenValsAndVecs :
blockSize : int *
ksize : int *
?borderType : BorderTypes
(* Defaults:
let _borderType = defaultArg borderType BorderTypes.Reflect101
*)
-> Mat
function CornerEigenValsAndVecs(blockSize, ksize, borderType);
Parameters
- blockSize
- Type: SystemInt32
- ksize
- Type: SystemInt32
- borderType (Optional)
- Type: OpenCvSharpBorderTypes
Return Value
Type:
Mat
See Also