VOOZH about

URL: https://www.geeksforgeeks.org/python/wand-sharpen-function-python/

⇱ Wand sharpen() function - Python - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Wand sharpen() function - Python

Last Updated : 19 May, 2021

The sharpen() function is an inbuilt function in the Python Wand ImageMagick library which is used to sharpen the image.

Syntax: 

sharpen(radius, sigma)

Parameters: This function accepts four parameters as mentioned above and defined below:  

  • radius: This parameter stores the radius value of the sharpness.
  • sigma: This parameter stores the sigma level of the sharpen image.

Return Value: This function returns the Wand ImageMagick object.

Original Image: 
 

👁 Image

Example 1:  

Output: 

👁 Image

Example 2:  

Output: 

👁 Image


 

Comment
Article Tags: