MatAddition Operator (Double, Mat) |
http://www.emgu.com
Element wise add mat1 with value
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntaxpublic static Mat operator +(
double value,
Mat mat1
)
Public Shared Operator + (
value As Double,
mat1 As Mat
) As Mat
public:
static Mat^ operator +(
double value,
Mat^ mat1
)
static let inline (+)
value : float *
mat1 : Mat : Mat
Parameters
- value
- Type: SystemDouble
The value to be added - mat1
- Type: Emgu.CVMat
The mat to be added
Return Value
Type:
MatThe mat plus the value
See Also