Elementwise add mat1 with val

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,
	double val
)
Public Shared Operator + ( _
	mat1 As Matrix(Of TDepth), _
	val As Double _
) As Matrix(Of TDepth)
public:
static Matrix<TDepth>^ operator +(
	Matrix<TDepth>^ mat1, 
	double val
)

Parameters

mat1
Matrix<(Of <(TDepth>)>)
The Matrix to be added
val
Double
The value to be added

Return Value

The matrix plus the value

See Also