Visit ComfyUI Online for ready-to-use ComfyUI environment
Apply Gaussian blur effect to images for noise reduction and soft appearance, with adjustable radius and sigma for artistic control.
The Blur node is designed to apply a Gaussian blur effect to an image, which is a common technique in image processing to reduce noise and detail. This node is particularly useful for creating a smooth, soft appearance in your images, which can enhance the overall aesthetic or prepare the image for further processing steps. By adjusting the blur radius and sigma, you can control the intensity and spread of the blur effect, allowing for a wide range of artistic and practical applications. The Gaussian blur method ensures that the transition between blurred and non-blurred areas is smooth and natural, making it a versatile tool for AI artists.
This parameter represents the input image that you want to apply the blur effect to. The image should be in the form of a tensor with dimensions corresponding to batch size, height, width, and channels.
The blur_radius parameter controls the size of the area around each pixel that will be averaged to produce the blur effect. A larger radius results in a more pronounced blur. The value must be an integer between 1 and 15, with a default value of 1. Increasing the blur radius will make the image appear softer and more out of focus.
The sigma parameter determines the standard deviation of the Gaussian distribution used to calculate the blur. A higher sigma value results in a wider spread of the blur effect, making the image appear more blurred. The value must be a float between 0.1 and 10.0, with a default value of 1.0. Adjusting the sigma allows for fine-tuning the smoothness and intensity of the blur.
The output is the blurred version of the input image. This tensor will have the same dimensions as the input image but with the blur effect applied according to the specified blur_radius and sigma values. The blurred image can be used directly in your artwork or as a pre-processed input for further image manipulation tasks.
blur_radius * 2 + 1
, so ensure that blur_radius is a positive integer.© Copyright 2024 RunComfy. All Rights Reserved.