Comment on page
Image Memory
The
Image Memory
node in AugeLab Studio stores an input image in memory and outputs the stored image when a specified condition is met.The
Image Memory
node allows you to store an image in memory and retrieve it later when a condition is satisfied. This is useful when you want to hold and output a specific image until a certain condition occurs.- Node Title: Image Memory
- Node ID: OP_NODE_IMAGE_MEMORY
The
Image Memory
node has the following input sockets:- 1.Input Image: The input image to be stored in memory.
- 2.Hold Condition: A boolean value that determines whether to hold the input image in memory. When the condition is
True
, the stored image is output. When the condition isFalse
, the input image is stored in memory and not output.
The
Image Memory
node has the following output socket:- 1.Output Image: The stored image from memory.
The
Image Memory
node does not have any specific controls.- 1.Drag and drop the
Image Memory
node from the node library onto the canvas in AugeLab Studio. - 2.Connect the input image to the Input Image input socket of the
Image Memory
node. - 3.Connect a boolean value or condition to the Hold Condition input socket of the
Image Memory
node. This condition determines whether to hold the input image in memory and output the stored image. - 4.Run the pipeline.
- 5.The
Image Memory
node will store the input image in memory if the hold condition isFalse
. If the hold condition isTrue
, the stored image will be output through the Output Image output socket. - 6.If the hold condition becomes
True
after beingFalse
, the stored image will be output. - 7.Use the output image for further analysis or display it in the console.
- The
Image Memory
node stores the input image in memory and outputs the stored image based on the hold condition. - The stored image is output when the hold condition is
True
. - If the hold condition is initially
True
, the node will output a zero image until the hold condition becomesFalse
. - The stored image remains in memory until a new input image is received and the hold condition is
False
. - The node supports images of any size and data type.
That concludes the documentation for the
Image Memory
node in AugeLab Studio. This node allows you to store an image in memory and retrieve it when a specified condition is met, providing more control over image processing and analysis.