Click or drag to resize

CovarMethod Enumeration

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
Members
  Member nameValueDescription
Scrambled0 Calculates covariation matrix for a set of vectors transpose([v1-avg, v2-avg,...]) * [v1-avg,v2-avg,...]
Normal1 [v1-avg, v2-avg,...] * transpose([v1-avg,v2-avg,...])
UseAvg2 Do not calc average (i.e. mean vector) - use the input vector instead (useful for calculating covariance matrix by parts)
Scale4 Scale the covariance matrix coefficients by number of the vectors
Rows8 All the input vectors are stored in a single matrix, as its rows
Cols16 All the input vectors are stored in a single matrix, as its columns
See Also