A MatND is a wrapper to cvMatND of OpenCV.

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

Syntax

C#
[SerializableAttribute]
public class MatND<TDepth> : CvArray<TDepth>, 
	IEquatable<MatND<TDepth>>
where TDepth : new()
Visual Basic (Declaration)
<SerializableAttribute> _
Public Class MatND(Of TDepth As New) _
	Inherits CvArray(Of TDepth) _
	Implements IEquatable(Of MatND(Of TDepth))
Visual C++
[SerializableAttribute]
generic<typename TDepth>
where TDepth : gcnew()
public ref class MatND : public CvArray<TDepth>, 
	IEquatable<MatND<TDepth>^>

Type Parameters

TDepth
The type of depth

Inheritance Hierarchy

System..::.Object
  Emgu.Util..::.DisposableObject
    Emgu.Util..::.UnmanagedObject
      Emgu.CV..::.CvArray<(Of <(TDepth>)>)
        Emgu.CV..::.MatND<(Of <(TDepth>)>)

See Also