MatrixTDepthMultiply Operator (MatrixTDepth, MatrixTDepth) |
http://www.emgu.com mat1 * mat2
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.3.0.2824 (3.3.0.2824)
Syntaxpublic static Matrix<TDepth> operator *(
Matrix<TDepth> mat1,
Matrix<TDepth> mat2
)
Public Shared Operator * (
mat1 As Matrix(Of TDepth),
mat2 As Matrix(Of TDepth)
) As Matrix(Of TDepth)
public:
static Matrix<TDepth>^ operator *(
Matrix<TDepth>^ mat1,
Matrix<TDepth>^ mat2
)
static let inline (*)
mat1 : Matrix<'TDepth> *
mat2 : Matrix<'TDepth> : Matrix<'TDepth>
Parameters
- mat1
- Type: Emgu.CVMatrixTDepth
The Matrix to be multiplied - mat2
- Type: Emgu.CVMatrixTDepth
The Matrix to be multiplied
Return Value
Type:
MatrixTDepthmat1 *
mat2
See Also