Click or drag to resize
CudaBackgroundSubtractorMOGUpdate 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,
	IOutputArray foregroundMask,
	double learningRate,
	Stream stream = null
)

Parameters

frame
Type: Emgu.CVIInputArray
Next video frame.
foregroundMask
Type: Emgu.CVIOutputArray
The foregroundMask
learningRate
Type: SystemDouble
The learning rate, use -1.0f for default value.
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