Elementwise add a color val to the current matrix

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

Syntax

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

Parameters

val
TDepth
The value to be added to the current matrix

Return Value

The result of elementwise adding val from the current matrix

See Also