http://www.emgu.com
This function compare the current matrix with mat2 and returns the comparison mask
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.3.0.2824 (3.3.0.2824)
Syntaxpublic Matrix<byte> Cmp(
Matrix<TDepth> mat2,
CmpType type
)
Public Function Cmp (
mat2 As Matrix(Of TDepth),
type As CmpType
) As Matrix(Of Byte)
public:
Matrix<unsigned char>^ Cmp(
Matrix<TDepth>^ mat2,
CmpType type
)
member Cmp :
mat2 : Matrix<'TDepth> *
type : CmpType -> Matrix<byte>
Parameters
- mat2
- Type: Emgu.CVMatrixTDepth
The other matrix to compare with - type
- Type: Emgu.CV.CvEnumCmpType
Comparison type
Return Value
Type:
MatrixByteThe comparison mask
See Also