MatrixTDepthAddition Operator (MatrixTDepth, MatrixTDepth) |
http://www.emgu.com
Elementwise add mat1 with 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 added - mat2
- Type: Emgu.CVMatrixTDepth
The Matrix to be added
Return Value
Type:
MatrixTDepthThe elementwise sum of the two matrices
See Also