Open In App

Wand enhance() function in Python

Similar to despeckle() function this function also reduces noise of the image. enhance() function return an image with reduced noise of an image by applying an auto-filter.

Syntax : wand.image.enhance() 



Parameters : No parameters in enhance() function

Source Image:



  

Example 1: 




# Import Image from wand.image module
from wand.image import Image
 
# Read image using Image function
with Image(filename ="koala.jpeg") as img:
    # reduce noise image using enhance() function
    img.enhance()
    img.save(filename ="vkoala.jpeg")

Output:

  

Example 2: 

Source Image:

  




# Import Image from wand.image module
from wand.image import Image
 
# Read image using Image function
with Image(filename ="road.jpeg") as img:
    # reduce noise image using enhance() function
    img.enhance()
    img.save(filename ="vkoala2.jpeg")

Output:

 

Article Tags :