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.0.1.0 (2.0.1.0)
Syntax
C# |
---|
public Image(
TDepth[,,] data
) |
Visual Basic (Declaration) |
---|
Public Sub New ( _
data As TDepth(,,) _
) |
Visual C++ |
---|
public:
Image(
array<TDepth,3>^ data
) |
Parameters
- data
- Type: 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