MatrixTDepthSub Method (MatrixTDepth) |
http://www.emgu.com Elementwise subtract another matrix from the current matrix
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.3.0.2824 (3.3.0.2824)
Syntaxpublic Matrix<TDepth> Sub(
Matrix<TDepth> mat2
)
Public Function Sub (
mat2 As Matrix(Of TDepth)
) As Matrix(Of TDepth)
public:
Matrix<TDepth>^ Sub(
Matrix<TDepth>^ mat2
)
member Sub :
mat2 : Matrix<'TDepth> -> Matrix<'TDepth>
Parameters
- mat2
- Type: Emgu.CVMatrixTDepth
The matrix to be subtracted to the current matrix
Return Value
Type:
MatrixTDepth The result of elementwise subtracting mat2 from the current matrix
See Also