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