🖥
🖥
🖥
🖥
AugeLab Studio Manual
English
Ask or search…
K
Comment on page

Multiply Images

Multiply Images Node Documentation

The Multiply Images node in AugeLab Studio is used to multiply two input images pixel by pixel.

Node Overview

The Multiply Images node takes two input images and multiplies the pixel values of each corresponding pixel. It creates a new image where each pixel represents the multiplication of the corresponding pixels in the input images. The node is useful for performing element-wise multiplication between images.

Node Properties

  • Node Title: Multiply Images
  • Node ID: OP_NODE_MULTIPLY_IMAGE

Inputs

The Multiply Images node has the following input sockets:
  1. 1.
    Input Image 1: The first input image.
  2. 2.
    Input Image 2: The second input image.
Both input images should have the same dimensions.

Outputs

The Multiply Images node has the following output socket:
  1. 1.
    Output Image: The resulting image with pixel values representing the multiplication of the corresponding pixels from the input images.
The output image will have the same dimensions as the input images.

Usage

  1. 1.
    Drag and drop the Multiply Images node from the node library onto the canvas in AugeLab Studio.
  2. 2.
    Connect the first input image to the Input Image 1 input socket of the Multiply Images node.
  3. 3.
    Connect the second input image to the Input Image 2 input socket of the Multiply Images node.
  4. 4.
    Run the pipeline.
  5. 5.
    The Multiply Images node will multiply the pixel values of the input images and create a new image with the multiplied values.
  6. 6.
    The resulting image will be output through the Output Image output socket.
  7. 7.
    Use the output image for further analysis or display it in the console.

Notes

  • The Multiply Images node requires two input images.
  • The node multiplies the pixel values of each corresponding pixel in the input images.
  • It creates a new image with pixel values representing the multiplication of the corresponding pixels from the input images.
  • The node supports images of any size and data type.
  • If the input images have different dimensions, an error will be raised. Ensure that the input images have the same size.
  • The Multiply Images node uses OpenCV's cv2.multiply() function to multiply the pixel values and create the output image.
  • The resulting image will have the same dimensions as the input images.
That concludes the documentation for the Multiply Images node in AugeLab Studio. This node allows you to perform element-wise multiplication between two images, enabling you to combine images based on their pixel values in your pipeline.