MatAddition Operator (Mat, Mat) |
http://www.emgu.com
Element wise add mat1 with mat2
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 +(
Mat mat1,
Mat mat2
)
Public Shared Operator + (
mat1 As Mat,
mat2 As Mat
) As Mat
public:
static Mat^ operator +(
Mat^ mat1,
Mat^ mat2
)
static let inline (+)
mat1 : Mat *
mat2 : Mat : Mat
Parameters
- mat1
- Type: Emgu.CVMat
The first image to be added - mat2
- Type: Emgu.CVMat
The second image to be added
Return Value
Type:
MatThe sum of the two images
See Also