Enumerations | |
enum | TArithmeticOperation { OP_ADD_IMAGES = 0 , OP_MULTIPLY_IMAGES = 1 , OP_SUBTRACT_IMAGES = 2 , OP_DIVIDE_IMAGES = 3 , OP_SUBTRACT_IMAGES_ABS = 4 , OP_AND_IMAGES = 5 , OP_OR_IMAGES = 6 , OP_XOR_IMAGES = 7 , OP_ADD_IMAGE_CONST = 8 , OP_MULTIPLY_IMAGE_CONST = 9 , OP_SUBTRACT_IMAGE_CONST = 10 , OP_DIVIDE_IMAGE_CONST = 11 , OP_SUBTRACT_IMAGE_CONST_ABS = 12 , OP_AND_IMAGE_CONST = 13 , OP_OR_IMAGE_CONST = 14 , OP_XOR_IMAGE_CONST = 15 , OP_UPSHIFT_IMAGE_CONST = 16 , OP_DOWNSHIFT_IMAGE_CONST = 17 , OP_ABS_IMAGE = 18 , OP_SQUARE_IMAGE = 19 , OP_SQUAREROOT_IMAGE = 20 , OP_NEGATE_IMAGE = 21 } |
Determines which operation is applied to the input image(s) when the Execute method is called. More... | |
enum TArithmeticOperation |
Determines which operation is applied to the input image(s) when the Execute method is called.
Enumerator | |
---|---|
OP_ADD_IMAGES | |
OP_MULTIPLY_IMAGES | |
OP_SUBTRACT_IMAGES | Subtract the second image by the first image. |
OP_DIVIDE_IMAGES | Divide the second image by the first image. |
OP_SUBTRACT_IMAGES_ABS | Calculates the absolute value of the subtraction of the two images. |
OP_AND_IMAGES | |
OP_OR_IMAGES | |
OP_XOR_IMAGES | |
OP_ADD_IMAGE_CONST | Adds an absolute term to the first image. |
OP_MULTIPLY_IMAGE_CONST | Multiplies the first image by an absolute term. |
OP_SUBTRACT_IMAGE_CONST | Subtract the first image by an absolute term. |
OP_DIVIDE_IMAGE_CONST | Divide the first image by an absolute term. |
OP_SUBTRACT_IMAGE_CONST_ABS | Calculates the absolute value of the subtraction of the first image and a constant value. |
OP_AND_IMAGE_CONST | AND operation of the first image and a constant value. |
OP_OR_IMAGE_CONST | OR operation of the first image and a constant value. |
OP_XOR_IMAGE_CONST | XOR operation of the first image and a constant value. |
OP_UPSHIFT_IMAGE_CONST | Upshift the first image by an absolute term. |
OP_DOWNSHIFT_IMAGE_CONST | Downshift the first image by an absolute term. |
OP_ABS_IMAGE | Calculate the absolute value of the first image. |
OP_SQUARE_IMAGE | Calculate the square of the first image. |
OP_SQUAREROOT_IMAGE | Calculate the square root of the first image. |
OP_NEGATE_IMAGE | Negate first image. |