ในโปรแกรมนี้ เราจะทำการเบลอภาพโดยใช้ฟังก์ชัน opencv blur()
อัลกอริทึม
Step 1: Import OpenCV. Step 2: Import the image. Step 3: Set the kernel size. Step 4: Call the blur() function and pass the image and kernel size as parameters. Step 5: Display the results.
ภาพต้นฉบับ
โค้ดตัวอย่าง
import cv2 image = cv2.imread("testimage.jpg") kernel_size = (7,7) image = cv2.blur(image, kernel_size) cv2.imshow("blur", image)
ผลลัพธ์
ภาพเบลอ
คำอธิบาย
ขนาดเคอร์เนลใช้เพื่อเบลอเพียงส่วนเล็ก ๆ ของรูปภาพ เคอร์เนลเคลื่อนไปทั่วทั้งภาพและเบลอพิกเซลที่ปกคลุม