MatSubtraction Operator (Mat, MCvScalar) |
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 Mat operator -(
Mat mat,
MCvScalar value
)
Public Shared Operator - (
mat As Mat,
value As MCvScalar
) As Mat
public:
static Mat^ operator -(
Mat^ mat,
MCvScalar value
)
static let inline (-)
mat : Mat *
value : MCvScalar : Mat
Parameters
- mat
- Type: Emgu.CVMat
The mat to be subtracted - value
- Type: Emgu.CV.StructureMCvScalar
The value to be subtracted
Return Value
Type:
Mat The result of element wise subtracting
value from
mat
See Also