Enum ComparisonOperation
Specifies the comparison operation used to test the relation between individual array elements in Cmp(Arr, Arr, Arr, ComparisonOperation) and CmpS(Arr, Double, Arr, ComparisonOperation).
Namespace: OpenCV.Net
Assembly: OpenCV.Net.dll
Syntax
public enum ComparisonOperation : int
Fields
Name | Description |
---|---|
Equal | Specifies that the comparison should check whether the two elements are equal. |
GreaterOrEqual | Specifies that the comparison should check whether the first element is greater than or equal to the second element. |
GreaterThan | Specifies that the comparison should check whether the first element is greater than the second element. |
LessOrEqual | Specifies that the comparison should check whether the first element is less than or equal to the second element. |
LessThan | Specifies that the comparison should check whether the first element is less than the second element. |
NotEqual | Specifies that the comparison should check whether the two elements are not equal. |