Skip to content

Instantly share code, notes, and snippets.

@letthedataconfess
Created September 20, 2021 16:16
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 letthedataconfess/feb43cfaf9bef6a69cde39c9365554f4 to your computer and use it in GitHub Desktop.
Save letthedataconfess/feb43cfaf9bef6a69cde39c9365554f4 to your computer and use it in GitHub Desktop.
img = cv2.imread("zebra.jpg")
gblur = cv2.GaussianBlur(img,(5,5),0)
cv2.imshow('Gaussian',gblur)
cv2.waitKey(0)
cv2.destroyAllWindows()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment