Enum CmpType
- Namespace
- OpenCvSharp
- Assembly
- OpenCvSharp.dll
The flag specifying the relation between the elements to be checked
public enum CmpType
Fields
EQ = 0src1(I) "equal to" src2(I)
GE = 2src1(I) "greater or equal" src2(I)
GT = 1src1(I) "greater than" src2(I)
LE = 4src1(I) "less or equal" src2(I)
LT = 3src1(I) "less than" src2(I)
NE = 5src1(I) "not equal to" src2(I)