UMatSubtraction Operator (UMat, UMat) |
http://www.emgu.com
Element wise subtract another mat from the current mat
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntaxpublic static UMat operator -(
UMat mat1,
UMat mat2
)
Public Shared Operator - (
mat1 As UMat,
mat2 As UMat
) As UMat
public:
static UMat^ operator -(
UMat^ mat1,
UMat^ mat2
)
static let inline (-)
mat1 : UMat *
mat2 : UMat : UMat
Parameters
- mat1
- Type: Emgu.CVUMat
The mat to be subtracted from. - mat2
- Type: Emgu.CVUMat
The second image to be subtracted from mat1
Return Value
Type:
UMat The result of element wise subtracting img2 from
mat1
See Also