Click or drag to resize
BackgroundSubtractorMOG Constructor
http://www.emgu.com
Create an "Improved adaptive Gaussian mixture model for background subtraction".

Namespace: Emgu.CV.BgSegm
Assembly: Emgu.CV.Contrib (in Emgu.CV.Contrib.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntax
public BackgroundSubtractorMOG(
	int history = 200,
	int nMixtures = 5,
	double backgroundRatio = 0.7,
	double noiseSigma = 0
)

Parameters

history (Optional)
Type: SystemInt32
The length of the history.
nMixtures (Optional)
Type: SystemInt32
The maximum number of gaussian mixtures.
backgroundRatio (Optional)
Type: SystemDouble
Background ratio
noiseSigma (Optional)
Type: SystemDouble
Noise strength (standard deviation of the brightness or each color channel). 0 means some automatic value.
See Also