Create image from the specific multi-dimensional data, where the 1st dimesion is # of rows (height), the 2nd dimension is # cols (width) and the 3rd dimension is the channel

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

Syntax

         
 C#  Visual Basic  Visual C++ 
public Image(
	TDepth[,,] data
)
Public Sub New ( _
	data As TDepth(,,) _
)
public:
Image(
	array<TDepth,3>^ data
)

Parameters

data
array<TDepth,3>[,](,)[,][,]
The multi-dimensional data where the 1st dimension is # of rows (height), the 2nd dimension is # cols (width) and the 3rd dimension is the channel

See Also