Elementwise add another matrix with the current matrix

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

Syntax

C#
public Matrix<TDepth> Add(
	Matrix<TDepth> mat2
)
Visual Basic (Declaration)
Public Function Add ( _
	mat2 As Matrix(Of TDepth) _
) As Matrix(Of TDepth)
Visual C++
public:
Matrix<TDepth>^ Add(
	Matrix<TDepth>^ mat2
)

Parameters

mat2
Type: Emgu.CV..::.Matrix<(Of <(TDepth>)>)
The matrix to be added to the current matrix

Return Value

The result of elementwise adding mat2 to the current matrix

See Also