Blur Image (Purz):
The PurzImageBlur node is designed to apply various blur effects to images, enhancing their aesthetic appeal or creating specific visual effects. This node offers three types of blurring techniques: Gaussian, box, and motion blur, each providing a unique way to soften or distort the image. Gaussian blur is ideal for creating a smooth, natural-looking blur by averaging pixel values in a circular pattern, which is particularly useful for reducing noise or detail. Box blur, on the other hand, applies a uniform blur effect by averaging pixel values in a square pattern, which can be useful for creating a more pronounced blur effect. Motion blur simulates the effect of movement, creating a streaking effect that can add a dynamic feel to images. By offering these options, the PurzImageBlur node allows you to tailor the blur effect to suit your artistic vision, whether you're looking to create a subtle background blur or a dramatic motion effect.
Blur Image (Purz) Input Parameters:
image
This parameter represents the input image that you want to apply the blur effect to. It is essential as it serves as the base for the blurring process. The image should be in a format compatible with the node, typically a tensor format, which allows for efficient processing and manipulation.
blur_type
The blur_type parameter determines the type of blur effect to be applied to the image. You can choose from three options: "gaussian", "box", or "motion". Each type offers a different visual effect, with Gaussian providing a smooth, natural blur, box offering a more uniform blur, and motion simulating the effect of movement. The default value is "gaussian".
blur_radius
The blur_radius parameter controls the intensity of the blur effect. It defines the size of the area over which pixel values are averaged to create the blur. A larger radius results in a more pronounced blur, while a smaller radius produces a subtler effect. The blur_radius can range from 0.1 to 50.0, with a default value of 5.0, allowing you to fine-tune the blur intensity to achieve the desired visual outcome.
Blur Image (Purz) Output Parameters:
image
The output parameter is the processed image with the applied blur effect. This image retains the original dimensions and format but now includes the chosen blur effect, which can enhance the visual appeal or create specific artistic effects. The output image is typically in a tensor format, ready for further processing or display.
Blur Image (Purz) Usage Tips:
- Experiment with different
blur_typesettings to achieve various artistic effects; for instance, use "motion" blur to simulate movement in action shots. - Adjust the
blur_radiusto control the intensity of the blur; a smaller radius is ideal for subtle effects, while a larger radius can create dramatic blurs. - Consider using Gaussian blur for smoothing out noise in images, as it provides a natural-looking blur that can enhance image quality.
Blur Image (Purz) Common Errors and Solutions:
Invalid blur type
- Explanation: This error occurs when an unsupported blur type is specified.
- Solution: Ensure that the
blur_typeparameter is set to one of the supported options: "gaussian", "box", or "motion".
Blur radius out of range
- Explanation: This error happens when the
blur_radiusis set outside the allowed range. - Solution: Adjust the
blur_radiusto be within the valid range of 0.1 to 50.0.
Image format not supported
- Explanation: This error arises when the input image is not in a compatible format.
- Solution: Convert the image to a tensor format before inputting it into the node.
