实验四第一题
This commit is contained in:
BIN
Binary file not shown.
|
After Width: | Height: | Size: 73 KiB |
@@ -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()
|
||||
Reference in New Issue
Block a user