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:
Python3
# Import Image from wand.image modulefrom wand.image import Image# Read image using Image functionwith Image(filename ="koala.jpeg") as img:    # reduce noise image using enhance() function    img.enhance()    img.save(filename ="vkoala.jpeg") | 
Output:
 
Example 2:
Source Image:
 
Python3
# Import Image from wand.image modulefrom wand.image import Image# Read image using Image functionwith Image(filename ="road.jpeg") as img:    # reduce noise image using enhance() function    img.enhance()    img.save(filename ="vkoala2.jpeg") | 
Output:
 
