SoLogicalValueProcessingLogicalOperators Enumeration |
Namespace: OIV.ImageViz.Engines.ArithmeticAndLogic.LogicalOperations
Member name | Value | Description | |
---|---|---|---|
AND | 0 | The AND logical operator computes the logical and between an image and a value . On a binary image, it is equivalent to a minimum operation, as it appears in the boolean table below. | |
OR | 1 | The OR logical operator computes the logical or between an image and a value . On a binary image, it is equivalent to a maximum operation as it appears in the boolean table below. | |
XOR | 2 | The XOR logical operator is the exclusive or between an image and a value . | |
NOR | 3 | The NOR logical operator is the not or of an image and a value . | |
NAND | 4 | The NAND logical operator is the not and of an image and a value . | |
NXOR | 5 | The NXOR logical operator is the logical equivalence, i.e. : Not of the exclusive or of an image and a value . | |
SUB | 6 | The SUB logical operator is the logical difference between an image and a value . Note that logical difference is the only non commutative logical operation, i.e. . |