Elementwise add img1 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 Image<TColor, TDepth> operator +(
	double val,
	Image<TColor, TDepth> img1
)
Public Shared Operator + ( _
	val As Double, _
	img1 As Image(Of TColor, TDepth) _
) As Image(Of TColor, TDepth)
public:
static Image<TColor, TDepth>^ operator +(
	double val, 
	Image<TColor, TDepth>^ img1
)

Parameters

val
Double
The value to be added
img1
Image<(Of <(TColor, TDepth>)>)
The image to be added

Return Value

The images plus the color

See Also