MatrixTDepthAddition Operator (MatrixTDepth, Double) |
http://www.emgu.com
Elementwise add mat1 with val
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.3.0.2824 (3.3.0.2824)
Syntaxpublic static Matrix<TDepth> operator +(
Matrix<TDepth> mat1,
double val
)
Public Shared Operator + (
mat1 As Matrix(Of TDepth),
val As Double
) As Matrix(Of TDepth)
public:
static Matrix<TDepth>^ operator +(
Matrix<TDepth>^ mat1,
double val
)
static let inline (+)
mat1 : Matrix<'TDepth> *
val : float : Matrix<'TDepth>
Parameters
- mat1
- Type: Emgu.CVMatrixTDepth
The Matrix to be added - val
- Type: SystemDouble
The value to be added
Return Value
Type:
MatrixTDepthThe matrix plus the value
See Also