ในโปรแกรมนี้ เราจะทำการเบลอภาพโดยใช้ฟิลเตอร์เกาส์เซียน คลาส ImageFilter ในไลบรารีหมอนมีฟังก์ชันที่เรียกว่า GaussianBlur() ซึ่งช่วยในการปรับใช้ฟิลเตอร์ Gaussian blur ใช้พารามิเตอร์เพียงตัวเดียวที่เป็นรัศมีการเบลอ
ภาพต้นฉบับ
อัลกอริทึม
Step 1: Import Image and ImageFilter from Pillow. Step 2: Open the image. Step 3: Call the gaussianblur() method and specify the radius Step 4: Display the output.
โค้ดตัวอย่าง
from PIL import Image, ImageFilter im = Image.open('image_test.jpg') im1 = im.filter(ImageFilter.GaussianBlur(radius = 9)) im1.show()
ผลลัพธ์