Table of Contents

Enum CovarMethod

Namespace
Emgu.CV.CvEnum
Assembly
Emgu.CV.dll

cvCalcCovarMatrix method types

[Flags]
public enum CovarMethod

Fields

Cols = 16

All the input vectors are stored in a single matrix, as its columns

Normal = 1

[v1-avg, v2-avg,...] * transpose([v1-avg,v2-avg,...])

Rows = 8

All the input vectors are stored in a single matrix, as its rows

Scale = 4

Scale the covariance matrix coefficients by number of the vectors

Scrambled = 0

Calculates covariation matrix for a set of vectors transpose([v1-avg, v2-avg,...]) * [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)