MatrixTDepthAdd Method (MatrixTDepth) |
http://www.emgu.com Elementwise add another matrix with the current matrix
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.0.3408 (4.1.0.3408)
Syntaxpublic Matrix<TDepth> Add(
Matrix<TDepth> mat2
)
Public Function Add (
mat2 As Matrix(Of TDepth)
) As Matrix(Of TDepth)
public:
Matrix<TDepth>^ Add(
Matrix<TDepth>^ mat2
)
member Add :
mat2 : Matrix<'TDepth> -> Matrix<'TDepth>
Parameters
- mat2
- Type: Emgu.CVMatrixTDepth
The matrix to be added to the current matrix
Return Value
Type:
MatrixTDepth The result of elementwise adding mat2 to the current matrix
See Also