Skip to content

Instantly share code, notes, and snippets.

@Praveen76
Created April 15, 2022 18:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Praveen76/6e9daf9c2bdfeaca889bea58bc12f620 to your computer and use it in GitHub Desktop.
Save Praveen76/6e9daf9c2bdfeaca889bea58bc12f620 to your computer and use it in GitHub Desktop.
import cv2 as cv
img=cv.imread('D:\img.jpg')
#Average Blur
avg1=cv.blur(img,(3,3))
avg2=cv.blur(img,(6,6))
cv.imshow('avgBlur1',avg1)
cv.imshow('avgBlur2',avg2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment