Skip to content

Grid Visualization

The GridVisualization block displays an array of images in a grid. It will automatically resize the images to in the specified width and height. The first image will be in the top left corner, and the rest will be added to the right of the previous image until the row is full.

Type identifier

Use the following identifier in step "type" field: roboflow_core/grid_visualization@v1to add the block as as step in your workflow.

Properties

Name Type Description Refs
name str Enter a unique identifier for this step..
width int Width of the output image..
height int Height of the output image..

The Refs column marks possibility to parametrise the property with dynamic values available in workflow runtime. See Bindings for more info.

Available Connections

Check what blocks you can connect to Grid Visualization in version v1.

Input and Output Bindings

The available connections depend on its binding kinds. Check what binding kinds Grid Visualization in version v1 has.

Bindings
  • input

  • output

    • image (image): Image in workflows.
Example JSON definition of step Grid Visualization in version v1
{
    "name": "<your_step_name_here>",
    "type": "roboflow_core/grid_visualization@v1",
    "images": "$steps.buffer.output",
    "width": 2560,
    "height": 1440
}