Click or drag to resize

CudaBackgroundSubtractorMOG Constructor

http://www.emgu.com
Create a Gaussian Mixture-based Background/Foreground Segmentation model

Namespace:  Emgu.CV.Cuda
Assembly:  Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.0.3408 (4.1.0.3408)
Syntax
public CudaBackgroundSubtractorMOG(
	int history = 200,
	int nMixtures = 4,
	double backgroundRatio = 0.7,
	double noiseSigma = 0
)

Parameters

history (Optional)
Type: SystemInt32
Length of the history.
nMixtures (Optional)
Type: SystemInt32
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