Skip to content

Blur Visualization

Version v1

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 The unique name of this step..
copy_image bool Duplicate the image contents (vs overwriting the image in place). Deselect for chained visualizations that should stack on previous ones where the intermediate state is not needed..
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

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

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
}