Skip to content

Instantly share code, notes, and snippets.

@Praveen76
Created April 15, 2022 18:56
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/15bf9d7f8862a629873c68c7d9b98f53 to your computer and use it in GitHub Desktop.
Save Praveen76/15bf9d7f8862a629873c68c7d9b98f53 to your computer and use it in GitHub Desktop.
import cv2 as cv
img=cv.imread('D:\img.jpg')
#Gaussian Blurring
GaussBlr=cv.blur(img,(3,3),0)
cv.imshow('GaussBlr',GaussBlr)
#Median Blurring
MedianBlr=cv.medianBlur(img,3)
cv.imshow('GaussBlr',MedianBlr)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment