Skip to content

Instantly share code, notes, and snippets.

@letthedataconfess
Created September 20, 2021 16:31
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/fecdf9728bf9c1c889b7edbbb516e1be to your computer and use it in GitHub Desktop.
Save letthedataconfess/fecdf9728bf9c1c889b7edbbb516e1be to your computer and use it in GitHub Desktop.
img = cv2.imread("zebra.jpg")
img = cv2.cvtColor(img, cv2.COLOR_BGR2RGB)
denoised = cv2.fastNlMeansDenoisingColored(img, denoised, 15, 10, 50)
plt.imshow(denoised)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment