The last chapter explored the arithmetic and logical operations on images with Pillow. There is more to the world of image processing than that. Pillow has a lot more functionality to offer. You can enhance and filter images. You can also calculate histogram of image and its channels. You will learn all these advanced operations with Pillow in this chapter.
The ImageFilter Module
You can use the ImageFilter module in Pillow to perform a variety of filtering operations on images. You can use filters to remove noise, to add blur effects, and to sharpen and smooth ...