MatrixTDepthAdd Method (TDepth) |
http://www.emgu.com Elementwise add a color val to the current matrix
Namespace:
Emgu.CV
Assembly:
Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntaxpublic Matrix<TDepth> Add(
TDepth val
)
Public Function Add (
val As TDepth
) As Matrix(Of TDepth)
public:
Matrix<TDepth>^ Add(
TDepth val
)
member Add :
val : 'TDepth -> Matrix<'TDepth>
Parameters
- val
- Type: TDepth
The value to be added to the current matrix
Return Value
Type:
MatrixTDepth The result of elementwise adding
val from the current matrix
See Also