Elementwise add mat1 with mat2

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

Syntax

         
 C#  Visual Basic  Visual C++ 
public 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
)

Parameters

mat1
Matrix<(Of <(TDepth>)>)
The Matrix to be added
mat2
Matrix<(Of <(TDepth>)>)
The Matrix to be added

Return Value

The elementwise sum of the two matrices

See Also