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