Create a Bitmap image of certain size

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

Syntax

C#
public Bitmap ToBitmap(
	int width,
	int height
)
Visual Basic (Declaration)
Public Function ToBitmap ( _
	width As Integer, _
	height As Integer _
) As Bitmap
Visual C++
public:
Bitmap^ ToBitmap(
	int width, 
	int height
)

Parameters

width
Type: System..::.Int32
The width of the bitmap
height
Type: System..::.Int32
The height of the bitmap

Return Value

This image in Bitmap format of the specific size

See Also