Skip to content

Instantly share code, notes, and snippets.

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