79150140

Date: 2024-11-02 07:15:08
Score: 0.5
Natty:
Report link
import cv2 as cv
 
img = cv.imread('src.png', cv.IMREAD_GRAYSCALE)
height, width = img.shape 
blur = cv.blur(img, (width // 4, height // 4))
cv.imwrite('dst.png', blur)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Konstantin Makarov