http://www.emgu.com
cvCalcCovarMatrix method types
Namespace:
Emgu.CV.CvEnum
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntax[FlagsAttribute]
public enum CovarMethod
<FlagsAttribute>
Public Enumeration CovarMethod
[FlagsAttribute]
public enum class CovarMethod
[<FlagsAttribute>]
type CovarMethod
Members
| Member name | Value | Description |
---|
| Scrambled | 0 |
Calculates covariation matrix for a set of vectors
transpose([v1-avg, v2-avg,...]) * [v1-avg,v2-avg,...]
|
| Normal | 1 |
[v1-avg, v2-avg,...] * transpose([v1-avg,v2-avg,...])
|
| UseAvg | 2 |
Do not calc average (i.e. mean vector) - use the input vector instead
(useful for calculating covariance matrix by parts)
|
| Scale | 4 |
Scale the covariance matrix coefficients by number of the vectors
|
| Rows | 8 |
All the input vectors are stored in a single matrix, as its rows
|
| Cols | 16 |
All the input vectors are stored in a single matrix, as its columns
|
See Also