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.1.0.649 (2.1.0.649)

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 dimesion is # of rows (height), the 2nd dimension is # cols (width) and the 3rd dimension is the channel

See Also