Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

การใช้ Box Blur กับรูปภาพโดยใช้ไลบรารีหมอน


ในโปรแกรมนี้ เราจะทำการเบลอภาพโดยใช้ตัวกรองกล่อง คลาส ImageFilter ในไลบรารีหมอนมีฟังก์ชันที่เรียกว่า BoxBlur() ซึ่งช่วยในการปรับใช้ฟิลเตอร์บ็อกซ์เบลอ ใช้พารามิเตอร์เพียงตัวเดียวที่เป็นรัศมีการเบลอ

ภาพต้นฉบับ

การใช้ Box Blur กับรูปภาพโดยใช้ไลบรารีหมอน

อัลกอริทึม

Step 1: Import Image and ImageFilter from Pillow.
Step 2: Open the image.
Step 3: Call the boxblur() 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.BoxBlur(radius = 7))
im1.show()

ผลลัพธ์

การใช้ Box Blur กับรูปภาพโดยใช้ไลบรารีหมอน