[This is preliminary documentation and is subject to change.]

Process a frame

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

Syntax

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

Parameters

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

See Also