Write a single frame to the video writer
Namespace:
Emgu.CV
Assembly:
Emgu.CV (in Emgu.CV.dll) Version: 2.0.1.0 (2.0.1.0)
Syntax
C# |
---|
public void WriteFrame<TColor, TDepth>(
Image<TColor, TDepth> frame
)
where TColor : struct, new(), IColor
where TDepth : new()
|
Visual Basic (Declaration) |
---|
Public Sub WriteFrame(Of TColor As {Structure, New, IColor}, TDepth As New) ( _
frame As Image(Of TColor, TDepth) _
) |
Visual C++ |
---|
public:
generic<typename TColor, typename TDepth>
where TColor : value class, gcnew(), IColor
where TDepth : gcnew()
void WriteFrame(
Image<TColor, TDepth>^ frame
) |
Parameters
- frame
- Type: Emgu.CV..::.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