Skip to content

Image Blur

Version v1

Apply a blur to an image. The blur type and kernel size can be specified.

Type identifier

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

Properties

Name Type Description Refs
name str The unique name of this step..
blur_type str Type of Blur to perform on image..
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 Image Blur in version v1.

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

Bindings
  • input

    • image (image): The input image for this step..
    • blur_type (string): Type of Blur to perform on image..
    • kernel_size (integer): Size of the average pooling kernel used for blurring..
  • output

    • image (image): Image in workflows.
Example JSON definition of step Image Blur in version v1
{
    "name": "<your_step_name_here>",
    "type": "roboflow_core/image_blur@v1",
    "image": "$inputs.image",
    "blur_type": "average",
    "kernel_size": 5
}