Blur
This function block softens input images by applying a selectable blur filter. Use it to reduce noise, smooth textures, or prepare images for downstream analysis.
π₯ Inputs
Image Any Accepts any image (color or grayscale) to be blurred.
π€ Outputs
Image Any Returns the blurred version of the input image.
πΉοΈ Controls
Blur Type Choose the blur algorithm. Available options include AVERAGE_BLUR, GAUSSIAN_BLUR, and MEDIAN_BLUR.
Kernel Size Adjust how strong the blur will be. Larger values produce stronger smoothing. (Median blur uses a single size value; other types use a rectangular kernel.)
βοΈ Running mechanism
When the block receives an image on the Image Any input it applies the selected blur method with the chosen kernel size and outputs the processed image on Image Any. Changing the controls updates how subsequent images are processed. Larger kernel sizes increase smoothing but reduce fine detail.
π¨ Features
Simple selection between common blur methods for flexible smoothing.
Adjustable blur strength via an intuitive slider.
Works with both color and grayscale images.
Fast, suitable for real-time preview and preprocessing pipelines.
π Usage instructions
Connect an image source to
Image Any.Select the desired
Blur Type.Move the
Kernel Sizeslider to set smoothing strength.Use the resulting
Image Anyoutput as input to viewers or analysis blocks.
π‘ Tips and Tricks
Use
Image Resizebefore this block to speed up processing when full resolution is not needed.Use
Bluras a preprocessing step beforeImage ThresholdorImage Adaptive Thresholdto reduce noise and get cleaner binary results.Apply
BlurbeforeEdge Filterto reduce false edge responses from high-frequency noise.For pattern or feature matching, try
Blurtogether withFind Objectto reduce background noise; adjust kernel size carefully so salient features remain detectable.Preview results with
Show Imageto quickly iterate on control settings.When analyzing intensity along lines, apply
BlurbeforeHistogram On Lineto smooth spurious peaks.
π οΈ Troubleshooting
If the output looks unchanged, increase the
Kernel Sizeto see stronger smoothing.If important details disappear, reduce the kernel size or switch to a milder blur type (for example, try
GAUSSIAN_BLUR).For salt-and-pepper noise, prefer
MEDIAN_BLURas it is more effective at removing isolated pixel noise.
Last updated