http://www.emgu.com Elementwise add a color val to the current image
Namespace: Emgu.CVAssembly: Emgu.CV (in Emgu.CV.dll) Version: 2.3.0.1416 (2.3.0.1416)
Syntax
C# |
---|
public Image<TColor, TDepth> Add(
TColor val
) |
Visual Basic |
---|
Public Function Add ( _
val As TColor _
) As Image(Of TColor, TDepth) |
Visual C++ |
---|
public:
Image<TColor, TDepth>^ Add(
TColor val
) |
Parameters
- val
- Type: TColor
The color value to be added to the current image
Return Value
The result of elementwise adding color
val from the current image
See Also