MatrixTDepth Constructor (TDepth) |
http://www.emgu.com
Create a matrix using the specific data.
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.3.0.2824 (3.3.0.2824)
Syntaxpublic Matrix(
TDepth[,] data
)
Public Sub New (
data As TDepth(,)
)
public:
Matrix(
array<TDepth,2>^ data
)
new :
data : 'TDepth[,] -> Matrix
Parameters
- data
- Type: TDepth
[Missing <param name="data"/> documentation for "M:Emgu.CV.Matrix`1.#ctor(`0[0:,0:])"]
RemarksThe data will be used as the Matrix data storage. You need to make sure that the data object live as long as this Matrix object
See Also