Wand - blur() function in Python Last Updated : 22 Apr, 2020 Comments Improve Suggest changes Like Article Like Report Blurring Image means making an image fuzzy or hazy. A blur image is indefinite and it is unable to see an image clearly. Blur is of many types, like - Adaptive blur, Gaussian blur, Selective Blur etc. In order to blur an image we use blur() function. blur() function takes three arguments. Example : Syntax : Python3 wand.image.blur(radius="radius_value", sigma="sigma_value", channel = "optional_channel_value") Parameters : Parameter Input Type Description radius numbers.real the radius of the, in pixels, not counting the center pixel. Default is 0.0. sigma numbers.real the standard deviation of the, in pixels. Default value is 0.0. channel basestring Optional color channel to apply blur. Example #1: Input Image - Python3 1== # import Image from wand.image module from wand.image import Image # read file using Image function with Image(filename ="koala.jpeg") as img: # perform blur effect using blur() function img.blur(radius = 0, sigma = 3) # save final image img.save(filename ="blur_koala.jpeg") Output: Example #2: Input Image - Python3 1== # import Image from wand.image module from wand.image import Image from wand.display import display # read file using Image function with Image(filename ="human1.jpeg") as img: # perform blur effect using blur() function img.blur(radius = 3, sigma = 4, ) # save final image img.save(filename ="blurhuman.jpeg") display(img) Output: Comment More infoAdvertise with us Next Article Wand - blur() function in Python R RahulSabharwal Follow Improve Article Tags : Python Image-Processing Python-wand Practice Tags : python Similar Reads Wand blur() function - Python The blur() function is an inbuilt function in the Python Wand ImageMagick library which is used to blur the image. Syntax: blur(radius, sigma, channel) Parameters: This function accepts three parameters as mentioned above and defined below: radius: This parameter is used to specify the value of radi 2 min read Wand motion_blur() function - Python The motion_blur() function is an inbuilt function in the Python Wand ImageMagick library which is used to simulate motion blur. This function convolves the image with a Gaussian operator of the given radius and standard deviation. Syntax: motion_blur(radius, sigma, angle) Parameters: This function a 2 min read Wand color() function in Python color() function draws a color on the image using current fill color, starting at specified position & method. Uses same arguments as color() method. Following are PAINT_METHOD_TYPES. 'point' alters a single pixel.'replace' swaps on color for another. Threshold is influenced by fuzz.'floodfill' 2 min read Wand alpha() function in Python The alpha() function is identical to the wand color() function. Similar to color() function, alpha() function draws a color on the image using current fill color, starting at specified position & method. Uses same arguments as color() method. Syntax: wand.drawing.alpha(x, y, method) Parameters : 2 min read Python - blue_shift() function in Wand Blue shift effect make the colors dull by shifting blue values by a factor. A nighttime kind of scene is generated using this. This takes only one parameter factor. A lot of photo editors use this effect to give a night exposure effect to the image. Syntax : wand.image.blue_shift(factor) Parameters 1 min read Like