[This is preliminary documentation and is subject to change.]

Elementwise substract a color val to the current matrix

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

Syntax

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

Parameters

val
TDepth
The value to be substracted from the current matrix

Return Value

The result of elementwise substracting val from the current matrix

See Also