Compare the current image with value and returns the comparison mask

Namespace: Emgu.CV
Assembly: Emgu.CV (in Emgu.CV.dll) Version: 2.2.1.1150 (2.2.1.1150)

Syntax

         
 C#  Visual Basic  Visual C++ 
public Image<TColor, byte> Cmp(
	double value,
	CMP_TYPE comparisonType
)
Public Function Cmp ( _
	value As Double, _
	comparisonType As CMP_TYPE _
) As Image(Of TColor, Byte)
public:
Image<TColor, unsigned char>^ Cmp(
	double value, 
	CMP_TYPE comparisonType
)

Parameters

value
Double
The value to compare with
comparisonType
CMP_TYPE
The comparison type

Return Value

The result of the comparison as a mask

See Also