Friday, September 5, 2025
HomeLanguagesWand selective_blur() function in Wand python

Wand selective_blur() function in Wand python

Another kind of Blur that can be performed using Wand library in python is Selective Blur. Selective blur is similar to normal blur. Difference is that it only effect the part of the image that have contrast below a given quantum threshold. A new attribute named as threshold is introduced in this function.

Syntax :

Python3




wand.image.selective_blur(radius= radius_value, sigma= sigma_value,
                          threshold= thrshold_value,
                          channel = "optional_channel_value")
 
# radius should always be greater than sigma(standard deviation)


Parameters :

Parameter Input Type Description
radius numbers.Real the radius of the, in pixels, not counting the center pixel.
sigma numbers.Real the standard deviation, in pixels
threshold number.Real Only pixels within contrast threshold are effected.

 

Image Used :  

Example #1:  

Python3




# import display() to show final image
from wand.display import display
 
# import Image from wand.image module
from wand.image import Image
 
# read file using Image function
with Image(filename ="koala.jpeg") as img:
 
    # perform selective blur effect using
    # selective_blur() function
    img.selective_blur(radius = 8, sigma = 4,
              threshold = 0.15 * img.quantum_range)
 
    # save final image
    img.save(filename ="mb_koala.jpeg")
 
    # display final image
    display(img)


Output: 

Example #2: Increase threshold value to 0.5.

Python3




# import display() to show final image
from wand.display import display
 
# import Image from wand.image module
from wand.image import Image
 
# read file using Image function
with Image(filename ="koala.jpeg") as img:
    # perform selective blur effect
    # using selective_blur() function
    img.selective_blur(radius = 8, sigma = 4,
              threshold = 0.25 * img.quantum_range)
 
    # save final image
    img.save(filename ="mb_koala.jpeg")
 
    # display final image
    display(img)


Output: 

 

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32264 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6634 POSTS0 COMMENTS
Nicole Veronica
11801 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11861 POSTS0 COMMENTS
Shaida Kate Naidoo
6750 POSTS0 COMMENTS
Ted Musemwa
7025 POSTS0 COMMENTS
Thapelo Manthata
6698 POSTS0 COMMENTS
Umr Jansen
6718 POSTS0 COMMENTS