Skip to content

Blur Visualization

Class: BlurVisualizationBlockV1

Source: inference.core.workflows.core_steps.visualizations.blur.v1.BlurVisualizationBlockV1

The BlurVisualization block blurs detected objects in an image using Supervision's sv.BlurAnnotator.

Type identifier

Use the following identifier in step "type" field: roboflow_core/blur_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..
copy_image bool Enable this option to create a copy of the input image for visualization, preserving the original. Use this when stacking multiple visualizations..
kernel_size int Size of the average pooling kernel used for blurring..

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

Available Connections

Compatible Blocks

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

Input and Output Bindings

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

Bindings
Example JSON definition of step Blur Visualization in version v1
{
    "name": "<your_step_name_here>",
    "type": "roboflow_core/blur_visualization@v1",
    "image": "$inputs.image",
    "copy_image": true,
    "predictions": "$steps.object_detection_model.predictions",
    "kernel_size": 15
}