Python 圖片平滑化 smooth

本篇 ShengYu 將介紹如何使用 Python 來作圖片平滑化,在做影像處理時常常會需要用到圖片平滑化的功能,這邊我們使用 python 的 PIL 模組來作圖片的平滑化。

安裝 PIL

基本上新版本的 Python 應該都有內建 PIL,如果還未安裝 PIL 的話請參考這篇

使用範例

以下範例 ShengYu 是將 lena.jpg 這張圖片作平滑化,之後顯示並且存檔。

smooth-image.py
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from PIL import Image, ImageFilter

img = Image.open("lena.jpg")
img.show()

new_img = img.filter(ImageFilter.SMOOTH)
new_img.save("lena-smooth.jpg")
new_img.show()

結果如下圖所示:
左邊為原圖,右邊為縮放後的圖。

Image.filter 參數的詳細細節請參考這裡

相關主題
Python 圖片模糊化 blur
Python 縮放圖片 resize
Python 旋轉圖片 rotate
Python 裁切裁剪圖片 crop
Python 在圖片上繪製文字