Write a single frame to the video writer

Namespace:  Emgu.CV
Assembly:  Emgu.CV (in Emgu.CV.dll) Version: 2.1.0.649 (2.1.0.649)

Syntax

         
 C#  Visual Basic  Visual C++ 
public void WriteFrame<TColor, TDepth>(
	Image<TColor, TDepth> frame
)
where TColor : struct, new(), IColor
where TDepth : new()
Public Sub WriteFrame(Of TColor As {Structure, New, IColor}, TDepth As New) ( _
	frame As Image(Of TColor, TDepth) _
)
public:
generic<typename TColor, typename TDepth>
where TColor : value class, gcnew(), IColor
where TDepth : gcnew()
void WriteFrame(
	Image<TColor, TDepth>^ frame
)

Parameters

frame
Image<(Of <(TColor, TDepth>)>)
The frame to be written to the video writer

Type Parameters

TColor
The color type of the frame
TDepth
The depth of the frame

See Also