Process a frame

Namespace:  Emgu.CV.VideoSurveillance
Assembly:  Emgu.CV (in Emgu.CV.dll) Version: 2.0.1.0 (2.0.1.0)

Syntax

C#
public void Process(
	Image<TColor, byte> currentFrame,
	Image<Gray, byte> forgroundMask
)
Visual Basic (Declaration)
Public Sub Process ( _
	currentFrame As Image(Of TColor, Byte), _
	forgroundMask As Image(Of Gray, Byte) _
)
Visual C++
public:
void Process(
	Image<TColor, unsigned char>^ currentFrame, 
	Image<Gray, unsigned char>^ forgroundMask
)

Parameters

currentFrame
Type: Emgu.CV..::.Image<(Of <(TColor, Byte>)>)
The frame to be processed
forgroundMask
Type: Emgu.CV..::.Image<(Of <(Gray, Byte>)>)
the forground mask to be used

See Also