Comment on page
Load Image From Path
You can transfer your image data to AugeLab Studio with the image name via a specific file path. For this, write your file path with the String Input block in the first input, and write your image name in the second input with the Strin Input block.

The
Load Image From Path
node in AugeLab Studio allows you to load image data from a specified file path. It reads the image file and outputs the loaded image data for further processing or analysis in your workflow.The
Load Image From Path
node takes two input sockets: Path
and File Name
. It combines the provided path and file name to create the complete file path to the image file. Then, it reads the image file using OpenCV (cv2.imread
) and outputs the loaded image data.- 1.Drag and drop the
Load Image From Path
node from the node library onto the canvas in AugeLab Studio. - 2.Connect the
Path
input socket to a node that provides the folder path where the image file is located. - 3.Connect the
File Name
input socket to a node that provides the name of the image file. - 4.The node will automatically evaluate and output the loaded image data.
- Input Sockets:
- Path: The folder path where the image file is located.
- File Name: The name of the image file.
- Output Sockets:
- Image: The loaded image data from the specified file path.
The
Load Image From Path
node follows these steps to load the image data:- 1.Path and File Name Input: It receives the folder path and file name through the input sockets.
- 2.File Path Generation: It combines the provided path and file name to create the complete file path to the image file.
- 3.Image Loading: It reads the image file using OpenCV (
cv2.imread
) and loads the image data into memory. - 4.Image Output: It outputs the loaded image data through the output socket.
- 1.Drag and drop the
Load Image From Path
node from the node library onto the canvas in AugeLab Studio. - 2.Connect the
Path
input socket to a node that provides the folder path where the image file is located. - 3.Connect the
File Name
input socket to a node that provides the name of the image file. - 4.The node will automatically evaluate and output the loaded image data.
- 5.Connect the output image to other nodes in your workflow for further processing or analysis.
- The
Load Image From Path
node allows you to load image data from a specific file path. - The provided folder path should be a valid path to the directory where the image file is located.
- The provided file name should be the name of the image file, including the file extension.
- The image file should be in a common image format supported by OpenCV, such as PNG, JPEG, or BMP.
- Make sure the file path and name inputs are properly connected to provide valid information for loading the image.
- The loaded image data can be connected to other nodes in your workflow for various image processing tasks.
- The
Load Image From Path
node is useful when you need to load image data from specific file paths dynamically. - Combine the
Load Image From Path
node with other image processing nodes to create powerful image analysis pipelines. - Experiment with different file paths and names to load different images into your workflow.
- The
Load Image From Path
node is a versatile tool for working with image data in AugeLab Studio. - Ensure that the image file exists at the specified file path before running the workflow.
- Use the output image of the
Load Image From Path
node as input for other nodes, such as feature extraction, filtering, or machine learning algorithms. - Leverage the interactive nature of AugeLab Studio to iterate and refine your image processing workflows using the
Load Image From Path
node.