Process a frame

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

Syntax

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

Parameters

currentFrame
Image<(Of <(<'TColor, Byte>)>)>
The frame to be processed
foregroundMask
Image<(Of <(<'Gray, Byte>)>)>
the foreground mask to be used

See Also