Create a blank Image of the specified width, height and color.

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

Syntax

C#
public Image(
	int width,
	int height,
	TColor value
)
Visual Basic (Declaration)
Public Sub New ( _
	width As Integer, _
	height As Integer, _
	value As TColor _
)
Visual C++
public:
Image(
	int width, 
	int height, 
	TColor value
)

Parameters

width
Type: System..::.Int32
The width of the image
height
Type: System..::.Int32
The height of the image
value
Type: TColor
The initial color of the image

See Also