cvCalcCovarMatrix method types
Namespace:
Emgu.CV.CvEnumAssembly: Emgu.CV (in Emgu.CV.dll) Version: 2.0.1.0 (2.0.1.0)
Syntax
C# |
---|
[FlagsAttribute] public enum COVAR_METHOD |
Visual Basic (Declaration) |
---|
<FlagsAttribute> _ Public Enumeration COVAR_METHOD |
Visual C++ |
---|
[FlagsAttribute] public enum class COVAR_METHOD |
Members
Member name | Description | |
---|---|---|
CV_COVAR_SCRAMBLED |
Calculates covariation matrix for a set of vectors
transpose([v1-avg, v2-avg,...]) * [v1-avg,v2-avg,...]
| |
CV_COVAR_NORMAL |
[v1-avg, v2-avg,...] * transpose([v1-avg,v2-avg,...])
| |
CV_COVAR_USE_AVG |
Do not calc average (i.e. mean vector) - use the input vector instead
(useful for calculating covariance matrix by parts)
| |
CV_COVAR_SCALE |
Scale the covariance matrix coefficients by number of the vectors
| |
CV_COVAR_ROWS |
All the input vectors are stored in a single matrix, as its rows
| |
CV_COVAR_COLS |
All the input vectors are stored in a single matrix, as its columns
|