Skip to content

Latest commit

 

History

History

image.DenoiseNLMeans

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

ABOUT

  • nlmeans_ipol.cpp, libdenoising.cpp and libdenoising.h may be linked to the EP patent 1,749,278 by A. Buades, T. Coll and J.M. Morel. They are provided for scientific and education only.

  • All the other files are distributed under the terms of the LGPLv3 license.

Examples

library(magick)
library(image.DenoiseNLMeans)
f <- system.file(package = "image.DenoiseNLMeans", "extdata", "img_garden.png")
img <- image_read(f)
img <- image_noise(img, noisetype = "Poisson")
img
denoised <- image_denoise_nlmeans(img, sigma = 40)
denoised