Wand adaptive_blur() function - Python Last Updated : 27 Aug, 2021 Comments Improve Suggest changes Like Article Like Report The adaptive_blur() function is an inbuilt function in the Python Wand ImageMagick library which is used to blur the image by decrementing the Gaussian value as the operator. It is present in class wand.image. Syntax: adaptive_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 radius which is the size of the gaussian aperture.sigma: This parameter is used to specify the value of sigma which is the standard deviation of the gaussian filter.channel: This parameter is used to specify the value of image channel as undefined, 'red', 'gray', 'cyan', 'green', 'magenta', 'blue', 'yellow', 'alpha', 'opacity', 'black', 'index', 'composite_channels', 'all_channels, 'sync_channels', 'default_channels'. Return Value: This function returns the Wand ImageMagick object. Original Image: Example 1: Python3 # Import library from Image from wand.image import Image # Import the image with Image(filename ='../geeksforgeeks.png') as image: # Clone the image in order to process with image.clone() as adaptive_blur: # Invoke adaptive_blur function with radius as 2, sigma as # 3 and channel as Green adaptive_blur.adaptive_blur(0, 3, 'Green') # Save the image adaptive_blur.save(filename ='adaptive_blur1.jpg') Output: Example 2: Python3 # Import library from Image from wand.image import Image # Import the image with Image(filename ='../geeksforgeeks.png') as image: # Clone the image in order to process with image.clone() as adaptive_blur: # Invoke adaptive_blur function with radius as 2, sigma as # 3 and channel as Green adaptive_blur.adaptive_blur(int(0), int(3), 'Green') # Save the image adaptive_blur.save(filename ='adaptive_blur1.jpg') Output: Comment More infoAdvertise with us Next Article Wand adaptive_blur() function - Python sarthak_ishu11 Follow Improve Article Tags : Python Image-Processing Python-wand Practice Tags : python Similar Reads Python - Adaptive Blur in Wand Adaptive Blur is a kind of blur. The only difference is that blur intensity around the detectable edges in image is less while, it is greater on areas without edges. Adaptive Blur can be done using adaptive_blur function.   Syntax :  Python3 wand.image.adaptive_blur(radius="radius_value", sigma=" 1 min read 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 adaptive_resize() function - Python The adaptive_resize() function is an inbuilt function in the Python Wand ImageMagick library which is used to resize the image by mesh interpolation technique. It is present in class wand.image. Syntax: adaptive_resize(columns, rows) Parameters: This function accepts two parameters as mentioned abov 2 min read Wand adaptive_sharpen() function - Python The adaptive_sharpen() function is an inbuilt function in the Python Wand ImageMagick library which is used to sharpens the image. The intensity is less far from the edges. It is present in class wand.image. Syntax: adaptive_sharpen(radius, sigma, channel) Parameters: This function accepts three par 2 min read Wand - blur() function in Python 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 : 2 min read Wand adaptive_threshold() function - Python The adaptive_threshold() function is an inbuilt function in the Python Wand ImageMagick library which is used to apply threshold for each pixel. It is present in class wand.image. Syntax: adaptive_threshold(width, height, offset) Parameters: This function accepts three parameters as mentioned above 2 min read Wand border() function - Python The border() function is an inbuilt function in the Python Wand ImageMagick library which is used to apply the border around the image. Syntax: border(color, height, width) Parameters: This function accepts three parameters as mentioned above and defined below: Color: This parameter is used to speci 2 min read Wand adaptive_sharpen() function in Python Adaptive Sharpen is similar to normal sharpening but the only difference is sharpen the image more intensely around the pixels with detectable edges, and less intensely away from the edges. Hence output image is more defined and clearer than normal sharpen. Syntax : wand.image.adaptive_sharpen(radiu 1 min read Wand clahe() function - Python The clahe() function is an inbuilt function in the Python Wand ImageMagick library which is used to contrast limited adaptive histogram equalization. Syntax: clahe(width, height, number_bins, clip_limit) Parameters: This function accepts four parameters as mentioned above and defined below: width: T 2 min read Wand clamp() function - Python The clamp() function is an inbuilt function in the Python Wand ImageMagick library which is used to restrict color values between 0 and quantum range. Syntax: canny(channel) Parameters: This function accepts two parameters as mentioned above and defined below: channel: This is an optional parameter 2 min read Like