实验四第一题

This commit is contained in:
2024-10-27 22:36:27 +08:00
parent 74954ee77e
commit 42b0cfb82f
2 changed files with 10 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import cv2 as cv
img = cv.imread('img.jpg')
img_blur = cv.blur(img, (5, 5))
cv.imshow('img', img)
cv.imshow('img_blur', img_blur)
cv.waitKey(0)
cv.destroyAllWindows()