Comment on page
Invert Image
The
Invert Image
node in AugeLab Studio is used to invert the colors of an input image.The
Invert Image
node takes an input image and applies the bitwise not operation to invert the colors of the image. This operation replaces each pixel value with its bitwise complement, resulting in a complete color inversion.- Node Title: Invert Image
- Node ID: OP_NODE_INVERT_IMAGE
The
Invert Image
node has the following input socket:- ImageAny: The input image to be inverted. Connect an image to this socket.
The
Invert Image
node has the following output socket:- ImageAny: The inverted image.
The
Invert Image
node does not have any configurable properties.- 1.Drag and drop the
Invert Image
node from the node library onto the canvas in AugeLab Studio. - 2.Connect the input image to the ImageAny input socket of the
Invert Image
node. - 3.Run the pipeline.
- 4.The
Invert Image
node will invert the colors of the input image and provide the inverted image at the ImageAny output socket. - 5.Retrieve the inverted image from the output socket for further processing or visualization.
- The
Invert Image
node works with images of any color space (e.g., grayscale, RGB, etc.). - The inversion operation replaces each pixel value with its bitwise complement. In other words, each pixel value is subtracted from the maximum value (255 for an 8-bit image), resulting in a color inversion.
- The
Invert Image
node can be used to create negative versions of images or to produce artistic effects by inverting colors.
That concludes the documentation for the
Invert Image
node in AugeLab Studio. This node allows you to invert the colors of an input image, producing an inverted image as output.