Elementwise add img1 with val

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 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