Elementwise subtract a color from the current image

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 Image<TColor, TDepth> Sub(
	TColor val
)
Public Function Sub ( _
	val As TColor _
) As Image(Of TColor, TDepth)
public:
Image<TColor, TDepth>^ Sub(
	TColor val
)

Parameters

val
TColor
The color value to be subtracted from the current image

Return Value

The result of elementwise subtracting color 'val' from the current image

See Also