Comment on page
Load Image
This block allows you to work on the image data instead of using the camera. You can load the reference images or main images in your projects by selecting them from your computer with the Load Image button.
You can also benefit from the sample images of Augelab-Studio\src\studio\control\resources\exampleImages located in the installation file directory.

The
Load Image
node in AugeLab Studio allows you to load an image from a file and display it in the node's output. It provides a convenient way to visualize and process images in your data pipeline.The
Load Image
node enables you to select an image file and load it into the node. It displays the loaded image as output, which can be further processed or analyzed using other nodes in your workflow.- 1.Drag and drop the
Load Image
node from the node library onto the canvas in AugeLab Studio. - 2.Double-click on the
Load Image
node to open the node properties panel. - 3.Click the "Load Image" button to open a file dialog.
- 4.Navigate to the folder containing the image file you want to load.
- 5.Select the image file and click the "Open" button.
- 6.The loaded image will be displayed in the node's output area.
- 7.Click the "See Image" button to open an image viewer tool for a closer look at the loaded image.
- Output Sockets:
- Image: The loaded image from the selected file.
The
Load Image
node follows these steps to load and display an image:- 1.File Selection: When the "Load Image" button is clicked, a file dialog is opened to allow the user to select an image file.
- 2.Image Loading: The selected image file is read using the OpenCV library (
cv2.imread
) and loaded into memory as an image. - 3.Image Display: The loaded image is displayed in the node's output area.
- 4.Image Viewer: The "See Image" button opens an image viewer tool to provide a closer look at the loaded image.
- 1.Drag and drop the
Load Image
node from the node library onto the canvas in AugeLab Studio. - 2.Double-click on the
Load Image
node to open the node properties panel. - 3.Click the "Load Image" button to open a file dialog.
- 4.Navigate to the folder containing the image file you want to load.
- 5.Select the image file and click the "Open" button.
- 6.The loaded image will be displayed in the node's output area.
- 7.Click the "See Image" button to open an image viewer tool for a closer look at the loaded image.
- 8.Connect the output image to other nodes in your workflow for further processing or analysis.
- The
Load Image
node allows you to quickly load an image file and visualize it within your data pipeline. - The selected image file should be in a common image format supported by OpenCV, such as PNG, JPEG, or BMP.
- The loaded image can be connected to other nodes in your workflow for various image processing tasks.
- Use the "See Image" button to open an image viewer tool for detailed inspection of the loaded image.
- The image viewer tool provides options for zooming, panning, and examining pixel values.
- The
Load Image
node is a fundamental building block for working with image data in AugeLab Studio. - Combine the
Load Image
node with other image processing nodes to create powerful image analysis pipelines. - Experiment with different images and explore the capabilities of AugeLab Studio's image processing nodes.
- Remember to save your workflow after loading images to ensure the images are available when you reopen the project.
- The
Load Image
node is especially useful for computer vision tasks, such as object detection, image classification, and image segmentation. - Use the output image of the
Load Image
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
node.