http://www.emgu.com
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.CVAssembly: Emgu.CV (in Emgu.CV.dll) Version: 2.3.0.1416 (2.3.0.1416)
Syntax
C# |
---|
public Image(
TDepth[,,] data
) |
Visual Basic |
---|
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 dimension is # of rows (height), the 2nd dimension is # cols (width) and the 3rd dimension is the channel
See Also