Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

noise reduction filter images python

import numpy as np
import cv2
from matplotlib import pyplot as plt

img = cv2.imread('die.png')

dst = cv2.fastNlMeansDenoisingColored(img,None,10,10,7,21)

plt.subplot(121),plt.imshow(img)
plt.subplot(122),plt.imshow(dst)
plt.show()
Source by opencv24-python-tutorials.readthedocs.io #
 
PREVIOUS NEXT
Tagged: #noise #reduction #filter #images #python
ADD COMMENT
Topic
Name
2+5 =