Click or drag to resize
SoLogicalValueProcessingLogicalOperators Enumeration

Namespace: OIV.ImageViz.Engines.ArithmeticAndLogic.LogicalOperations
Assembly: OIV.ImageViz (in OIV.ImageViz.dll) Version: 10.12.3.0 (10.12.3.0)
Syntax
public enum LogicalOperators
Members
  Member nameValueDescription
AND0

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.

OR1

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.

XOR2

The XOR logical operator is the exclusive or between an image and a value .

NOR3

The NOR logical operator is the not or of an image and a value .

NAND4

The NAND logical operator is the not and of an image and a value .

NXOR5

The NXOR logical operator is the logical equivalence, i.e.

: Not of the exclusive or of an image and a value .

SUB6

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. .

Remarks