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

ทำให้ภาพเบลอโดยใช้ฟังก์ชัน OpenCV medianBlur()


ในโปรแกรมนี้ เราจะทำการเบลอภาพโดยใช้ฟังก์ชัน medianBlur() ในไลบรารี OpenCV ค่ามัธยฐานเบลอช่วยประมวลผลขอบในภาพในขณะที่ขจัดสัญญาณรบกวน

ภาพต้นฉบับ

ทำให้ภาพเบลอโดยใช้ฟังก์ชัน OpenCV medianBlur()

อัลกอริทึม

Step 1: Import cv2.
Step 2: Read the image.
Step 3: Pass image and kernel size in the cv2.medianblur() function.
Step 4: Display the image.

โค้ดตัวอย่าง

import cv2
image = cv2.imread("testimage.jpg")
image = cv2.medianBlur(image, 7)
cv2.imshow("medianblur", image)

ผลลัพธ์

ทำให้ภาพเบลอโดยใช้ฟังก์ชัน OpenCV medianBlur()