MatrixTDepth Constructor (TDepth) |
http://www.emgu.com
Create a matrix using the specific data.
Namespace:
Emgu.CV
Assembly:
Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntaxpublic Matrix(
TDepth[,] data
)
Public Sub New (
data As TDepth(,)
)
public:
Matrix(
array<TDepth,2>^ data
)
new :
data : 'TDepth[,] -> Matrix
Parameters
- data
- Type: TDepth
The 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
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