http://www.emgu.com
Write a single frame to the video writer
Namespace: Emgu.CVAssembly: Emgu.CV (in Emgu.CV.dll) Version: 2.3.0.1416 (2.3.0.1416)
Syntax
C# |
---|
public void WriteFrame<TColor, TDepth>(
Image<TColor, TDepth> frame
)
where TColor : struct, new(), IColor
where TDepth : new()
|
Visual Basic |
---|
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