Friday, September 5, 2025
HomeLanguagesWand rotational_blur() function in Python

Wand rotational_blur() function in Python

Another type of Blur that can be performed in Wand python library is rotational blur. Rotational Blur is quite similar to Motion Blur but in this the motion of blur is circular. rotational_blur() function blur an image in a radius around the center of an image. Unlike the other blur methods, there is no radius or sigma arguments.

Syntax :

Python3




wand.image.rotational_blur( angle= angle_value,
                           channel = "optional_channel_value")
# radius should always be greater than sigma(standard deviation)


Parameter :

Parameter Input Type Description
angle basestring Degrees of rotation to blur with.
channel numbers.Real Optional channel to apply the effect against.

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 rotational blur effect using rotational_blur() function
    img.rotational_blur(angle = 10)
 
    # save final image
    img.save(filename ="rb_koala.jpeg")
 
    # display final image
    display(img)


Output :

  

Example #2: Increase angle to 30. 

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 rotational blur effect using rotational_blur() function
    img.rotational_blur(angle = 30)
 
    # save final image
    img.save(filename ="gb_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
11863 POSTS0 COMMENTS
Shaida Kate Naidoo
6752 POSTS0 COMMENTS
Ted Musemwa
7025 POSTS0 COMMENTS
Thapelo Manthata
6701 POSTS0 COMMENTS
Umr Jansen
6718 POSTS0 COMMENTS