Click or drag to resize
CudaBackgroundSubtractorMOG2Update Method
http://www.emgu.com
Updates the background model

Namespace: Emgu.CV.Cuda
Assembly: Emgu.CV.Cuda (in Emgu.CV.Cuda.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntax
public void Update(
	IInputArray frame,
	double learningRate,
	IOutputArray forgroundMask,
	Stream stream = null
)

Parameters

frame
Type: Emgu.CVIInputArray
Next video frame.
learningRate
Type: SystemDouble
The learning rate, use -1.0f for default value.
forgroundMask
Type: Emgu.CVIOutputArray

[Missing <param name="forgroundMask"/> documentation for "M:Emgu.CV.Cuda.CudaBackgroundSubtractorMOG2.Update(Emgu.CV.IInputArray,System.Double,Emgu.CV.IOutputArray,Emgu.CV.Cuda.Stream)"]

stream (Optional)
Type: Emgu.CV.CudaStream
Use a Stream to call the function asynchronously (non-blocking) or null to call the function synchronously (blocking).
See Also