使用Python圖像庫-Pillow來實作圖像處理。
pip install Pillow
from PIL import Image, ImageFilter
#讀取照片
im = Image.open( r'/Users/allen/Google 雲端硬碟 (hcchen@g.ntu.edu.tw)/2020鐵人賽/12/python-logo.png' )
#呈現照片
im.show()
#照片應用濾鏡
im_sharp = im.filter( ImageFilter.SHARPEN )
#針對應用濾鏡另存新照片
im_sharp.save( 'python-logo_sharpened.jpg', 'PNG' )